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
Git over here!
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Rails Girls Frankfurt
March 12, 2013
Programming
2
290
Git over here!
by Ferdi Cam
Rails Girls Frankfurt
March 12, 2013
Tweet
Share
More Decks by Rails Girls Frankfurt
See All by Rails Girls Frankfurt
What is Rails?
railsgirlsfrankfurt
0
80
Uploading your app to Heroku
railsgirlsfrankfurt
0
85
Version Control with Git
railsgirlsfrankfurt
0
96
How the Internet Works
railsgirlsfrankfurt
4
420
Heroku
railsgirlsfrankfurt
1
280
Speak Geek
railsgirlsfrankfurt
1
650
Taking the First Step
railsgirlsfrankfurt
1
300
A BRIEF OVERVIEW OF RUBY ON RAILS
railsgirlsfrankfurt
3
620
Other Decks in Programming
See All in Programming
ぼくの開発環境2026
yuzneri
1
290
AI主導でFastAPIのWebサービスを作るときに 人間が構造化すべき境界線
okajun35
0
360
生成AIを使ったコードレビューで定性的に品質カバー
chiilog
1
310
FOSDEM 2026: STUNMESH-go: Building P2P WireGuard Mesh Without Self-Hosted Infrastructure
tjjh89017
0
190
Event Storming
hschwentner
3
1.3k
AHC061解説
shun_pi
0
230
AI時代のキャリアプラン「技術の引力」からの脱出と「問い」へのいざない / tech-gravity
minodriven
22
8.1k
Lambda のコードストレージ容量に気をつけましょう
tattwan718
0
200
社内規程RAGの精度を73.3% → 100%に改善した話
oharu121
8
2.2k
Geminiの機能を調べ尽くしてみた
naruyoshimi
0
180
CDIの誤解しがちな仕様とその対処TIPS
futokiyo
0
120
CSC307 Lecture 10
javiergs
PRO
1
690
Featured
See All Featured
Bash Introduction
62gerente
615
210k
Building Applications with DynamoDB
mza
96
6.9k
The Director’s Chair: Orchestrating AI for Truly Effective Learning
tmiket
1
110
Utilizing Notion as your number one productivity tool
mfonobong
3
230
Navigating Algorithm Shifts & AI Overviews - #SMXNext
aleyda
1
1.1k
Speed Design
sergeychernyshev
33
1.6k
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
End of SEO as We Know It (SMX Advanced Version)
ipullrank
3
4k
Code Review Best Practice
trishagee
74
20k
Leveraging Curiosity to Care for An Aging Population
cassininazir
1
180
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
12
1k
Marketing to machines
jonoalderson
1
5k
Transcript
Git over here! What is it and what is it
good for? Tuesday, March 12, 13
What’s Version Control and why should I care? Version control
is a system that records changes to a file or set of files over time so that you can recall specific versions later. Tuesday, March 12, 13
Tuesday, March 12, 13
And Linus was Like: Tuesday, March 12, 13
And Linus was Like: Tuesday, March 12, 13
Git INIT To start using git in a directory $
git init Initialized empty Git repository in /your_dir_here Tuesday, March 12, 13
Git ADD “Hey git, start tracking my files!” $ git
add Git now knows these exists for version controlling Tuesday, March 12, 13
Git COMMIT Click, click - make a snapshot! $ git
commit --message ”first commit” Git made a new ‘savepoint’ Tuesday, March 12, 13
Git commit $ git commit -m “First commit!” Tuesday, March
12, 13
Git PUSH To share your cool commits with others, you
need to push your changes to the remote repository $ git push (origin master) Tuesday, March 12, 13
Git PULL Update itself with new data from the remote
repository $ git pull Tuesday, March 12, 13
Git CLONE Github.com Bazillions of repositories! da $ git clone
https://github/profile/reponame Tuesday, March 12, 13
Further reading Free Git Book! : http://git-scm.com/book Interactive course: http://www.codeschool.com/courses/try-git
Handy reference: http://gitref.org/index.html Tuesday, March 12, 13