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
Dive into Git
Search
Y
January 06, 2016
Programming
0
67
Dive into Git
Y
January 06, 2016
Tweet
Share
More Decks by Y
See All by Y
What I Talk About When I Talk About Social Media
idealhack
0
200
Starting a Digital Zettelkasten
idealhack
0
82
Recap: The Release Team Shadow Program - Mentoring For the Future
idealhack
1
880
Everyone Can Work on Kubernetes
idealhack
0
58
环青海湖骑行(2012)
idealhack
0
43
Introduction to Git
idealhack
1
710
Great Firewall of China
idealhack
0
60
Other Decks in Programming
See All in Programming
PHPでWebSocketサーバーを実装しよう2025
kubotak
0
320
NPOでのDevinの活用
codeforeveryone
0
900
Flutterで備える!Accessibility Nutrition Labels完全ガイド
yuukiw00w
0
170
明示と暗黙 ー PHPとGoの インターフェイスの違いを知る
shimabox
2
620
#QiitaBash MCPのセキュリティ
ryosukedtomita
1
1.5k
チームで開発し事業を加速するための"良い"設計の考え方 @ サポーターズCoLab 2025-07-08
agatan
1
470
状態遷移図を書こう / Sequence Chart vs State Diagram
orgachem
PRO
2
200
ニーリーにおけるプロダクトエンジニア
nealle
0
950
マッチングアプリにおけるフリックUIで苦労したこと
yuheiito
0
190
可変変数との向き合い方 $$変数名が踊り出す$$ / php conference Variable variables
gunji
0
180
A full stack side project webapp all in Kotlin (KotlinConf 2025)
dankim
0
150
Deep Dive into ~/.claude/projects
hiragram
14
14k
Featured
See All Featured
How to train your dragon (web standard)
notwaldorf
96
6.1k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
Visualization
eitanlees
146
16k
Code Review Best Practice
trishagee
69
19k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
5.9k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.5k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Why Our Code Smells
bkeepers
PRO
337
57k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
Six Lessons from altMBA
skipperchong
28
3.9k
Transcript
Dive into Git (1) idealhack @ TuSDK 2016/1/6
Git /ɡɪt/
Version Control System
Version Control System Distributed
None
Features • Branching and Merging • Small and Fast •
Distributed • Data Assurance • Staging Area • Free and Open Source http://git-scm.com/about
Installing • http://git-scm.com/download • $ brew install git • $
apt-get install git
Configurations • $ git config --global user.name "Your Name" •
$ git config --global user.email
[email protected]
• $ git config --global color.ui true
Hello World • $ git init • $ git add
README • $ git status • $ git commit -m "first commit"
Three Trees • Working Directory • Index (Staging Area) •
HEAD
Basics • $ git diff • $ git mv •
$ git rm • $ git log • $ git checkout • $ git reset • $ git blame • $ git show • $ git stash • ...
Branches • $ git branch • $ git merge •
$ git rebase • $ git cherry-pick • $ git tag • ...
Remotes • $ git clone • $ git remote •
$ git push • $ git fetch • $ git pull • ...
Getting Help • $ git help <command>
Goodies • SourceTree • GitLab • git-extras
Resources • git - ᓌกܖ • Pro Git • http://git-scm.com/
• http://gitref.org/ • http://gitcasts.com/ • https://help.github.com/
THANKS
Questions?