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
Phill Brown
January 26, 2012
Technology
2
120
Introduction to Git
Phill Brown
January 26, 2012
Tweet
Share
More Decks by Phill Brown
See All by Phill Brown
Drupal vs WordPress
phill_brown
6
310
Other Decks in Technology
See All in Technology
Exadata Fleet Update
oracle4engineer
PRO
0
1.2k
APMの世界から見るOpenTelemetryのTraceの世界 / OpenTelemetry in the Java
soudai
PRO
0
150
GoとWasmでつくる軽量ブラウザUI
keyl0ve
0
130
NW構成図の自動描画は何が難しいのか?/netdevnight3
corestate55
2
440
作るべきものと向き合う - ecspresso 8年間の開発史から学ぶ技術選定 / 技術選定con findy 2026
fujiwara3
4
710
GitHub Copilot CLI 現状確認会議(2026年2月のすがた)
torumakabe
4
630
ローカルでLLMを使ってみよう
kosmosebi
0
190
失敗できる意思決定とソフトウェアとの正しい歩き方_-_変化と向き合う選択肢/ Designing for Reversible Decisions
soudai
PRO
7
570
[続・営業向け 誰でも話せるOCI セールストーク] AWSよりOCIの優位性が分からない編(2026年2月20日開催)
oracle4engineer
PRO
0
110
プロダクト開発の品質を守るAIコードレビュー:事例に見る導入ポイント
moongift
PRO
1
450
vol11_ねこIoTLT_お遊びVibeCoding
1027kg
0
180
俺の失敗を乗り越えろ!メーカーの開発現場での失敗談と乗り越え方 ~ゆるゆるチームリーダー編~
spiddle
0
310
Featured
See All Featured
Prompt Engineering for Job Search
mfonobong
0
180
Why You Should Never Use an ORM
jnunemaker
PRO
61
9.7k
GraphQLの誤解/rethinking-graphql
sonatard
74
11k
The Art of Programming - Codeland 2020
erikaheidi
57
14k
Reflections from 52 weeks, 52 projects
jeffersonlam
356
21k
What's in a price? How to price your products and services
michaelherold
247
13k
Docker and Python
trallard
47
3.7k
The Curious Case for Waylosing
cassininazir
0
250
Darren the Foodie - Storyboard
khoart
PRO
3
2.6k
Digital Projects Gone Horribly Wrong (And the UX Pros Who Still Save the Day) - Dean Schuster
uxyall
0
530
The Cost Of JavaScript in 2023
addyosmani
55
9.7k
Music & Morning Musume
bryan
47
7.1k
Transcript
Introduction to Git
• Version control • Distributed • Fast About Git
Starting a repository • init git init • clone git
clone <repo>
Adding files • add git add -A • commit git
commit –am <message>
Branching A time B C D B A
Branching • branch git branch <branchname> • checkout git checkout
<branchname> • merge git merge <branchname>
Remotes Repo 1 Repo 2 remote Your local copy drupal.org
github.com origin
Updating local • fetch git fetch <remote> • merge git
merge <remote>/<branch>
Updating remote • push git push <remote> <branch>
Other features • exporting • tagging • diff • submodules
ANY QUESTIONS? @Phill_Brown