Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Break Things
Search
Zoe Nolan
December 05, 2015
Programming
0
1.4k
Break Things
Don’t be afraid of experimenting for Rails Girls London 6
Zoe Nolan
December 05, 2015
Tweet
Share
More Decks by Zoe Nolan
See All by Zoe Nolan
Mistakes I've made in my career (so far)
zoenolan
0
480
Knowing enough to be dangerous
zoenolan
0
1.3k
Where Do You See Yourself in Five Years?
zoenolan
0
1.2k
Always Be Learning
zoenolan
2
1.3k
Other Decks in Programming
See All in Programming
Azure AI Foundryのご紹介
qt_luigi
1
260
Open source software: how to live long and go far
gaelvaroquaux
0
420
最近のVS Codeで気になるニュース 2025/01
74th
1
240
PicoRubyと暮らす、シェアハウスハック
ryosk7
0
260
Compose でデザインと実装の差異を減らすための取り組み
oidy
1
280
Amazon ECS とマイクロサービスから考えるシステム構成
hiyanger
1
200
ASP. NET CoreにおけるWebAPIの最新情報
tomokusaba
0
270
【PHP】破壊的バージョンアップと戦った話〜決断と説得
satoshi256kbyte
0
110
DMMオンラインサロンアプリのSwift化
hayatan
0
280
ペアーズでの、Langfuseを中心とした評価ドリブンなリリースサイクルのご紹介
fukubaka0825
1
220
ecspresso, ecschedule, lambroll を PipeCDプラグインとして動かしてみた (プロトタイプ) / Running ecspresso, ecschedule, and lambroll as PipeCD Plugins (prototype)
tkikuc
2
3.2k
混沌とした例外処理とエラー監視に秩序をもたらす
morihirok
19
3.4k
Featured
See All Featured
The Illustrated Children's Guide to Kubernetes
chrisshort
48
49k
Reflections from 52 weeks, 52 projects
jeffersonlam
348
20k
Git: the NoSQL Database
bkeepers
PRO
427
64k
Navigating Team Friction
lara
183
15k
Music & Morning Musume
bryan
46
6.3k
Bootstrapping a Software Product
garrettdimon
PRO
305
110k
Testing 201, or: Great Expectations
jmmastey
41
7.2k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
30
2.1k
Rails Girls Zürich Keynote
gr2m
94
13k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
20
2.4k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
59k
Building Adaptive Systems
keathley
39
2.4k
Transcript
Break Things Don’t be afraid of experimenting Zoë Nolan Rails
Girls London December 2015
Hello my name is Zoë Find me online at http://zoenolan.org
Don't worry about taking notes http://zoenolan.org/blog/2015/12/break-things/
Try things Following guides is a good start But only
the start of your journey
Not all Experiments work Things will go wrong
Version Control Word’s track changes for source code
Git Created by Linus Torvalds Been around since 2005 Widely
used
Who am I? git config --global user.name “Ada Lovelace“ git
config --global user.email
[email protected]
Somewhere to store the changes git init RailsGirlsLondonSix
Adding changes git add TheNextFacebook.rb git commit
Branching Create a Branch git branch CoolNewThing Switch to a
branch git checkout CoolNewThing Delete a Branch git branch –D CoolNewThing
See your changes git status git log
Tutorials Try Git http://try.github.com/ How to Use Git and GitHub
https://www.udacity.com/course/how-to-use-git-and-github--ud775 Pro Git http://git-scm.com/book
Resources Git cheat sheet https://git.wiki.kernel.org/index.php/GitCheatSheet A successful Git branching model
http://nvie.com/posts/a-successful-git-branching-model/
http://zoenolan.org/blog/2015/12/break-things/