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
Introduction to Git
Search
Y
May 08, 2013
Programming
1
690
Introduction to Git
Y
May 08, 2013
Tweet
Share
More Decks by Y
See All by Y
What I Talk About When I Talk About Social Media
idealhack
0
180
Starting a Digital Zettelkasten
idealhack
0
77
Recap: The Release Team Shadow Program - Mentoring For the Future
idealhack
1
870
Everyone Can Work on Kubernetes
idealhack
0
52
环青海湖骑行(2012)
idealhack
0
39
Dive into Git
idealhack
0
59
Great Firewall of China
idealhack
0
52
Other Decks in Programming
See All in Programming
今話題のMCPサーバーをFastAPIでサッと作ってみた
yuukis
0
110
The New Developer Workflow: How AI Transforms Ideas into Code
danielsogl
0
100
ComposeでWebアプリを作る技術
tbsten
0
130
Vibe Coding の話をしよう
schroneko
13
3.6k
AIコーディングの理想と現実
tomohisa
35
37k
インプロセスQAにおいて大事にしていること / In-process QA Meetup
medley
0
130
「理解」を重視したAI活用開発
fast_doctor
0
270
Serving TUIs over SSH with Go
caarlos0
0
540
プロフェッショナルとしての成長「問題の深掘り」が導く真のスキルアップ / issue-analysis-and-skill-up
minodriven
8
1.9k
note の Elasticsearch 更新系を支える技術
tchov
9
3.4k
Golangci-lint v2爆誕: 君たちはどうすべきか
logica0419
1
230
オープンソースコントリビュート入門
_katsuma
0
120
Featured
See All Featured
For a Future-Friendly Web
brad_frost
177
9.7k
The Power of CSS Pseudo Elements
geoffreycrofte
75
5.8k
Build The Right Thing And Hit Your Dates
maggiecrowley
35
2.7k
We Have a Design System, Now What?
morganepeng
52
7.5k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
The Cult of Friendly URLs
andyhume
78
6.3k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
105
19k
Being A Developer After 40
akosma
91
590k
VelocityConf: Rendering Performance Case Studies
addyosmani
329
24k
Producing Creativity
orderedlist
PRO
344
40k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
Transcript
Introduction to Git Yang Li
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 • ...
• $ git clone • $ git remote • $
git push • $ git fetch • $ git pull • ... Remotes
• $ git help <command> Getting Help
Goodies • git-extras • GitX
Resources • http://git-scm.com/ • http://gitref.org/ • http://gitcasts.com/ • https://help.github.com/
THANKS
Questions?