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
110
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
300
Other Decks in Technology
See All in Technology
~宇宙最速~2025年AWS Summit レポート
satodesu
1
1.5k
キャディでのApache Iceberg, Trino採用事例 -Apache Iceberg and Trino Usecase in CADDi--
caddi_eng
0
180
PHP開発者のためのSOLID原則再入門 #phpcon / PHP Conference Japan 2025
shogogg
2
460
IIWレポートからみるID業界で話題のMCP
fujie
0
740
VCpp Link and Library - C++ breaktime 2025 Summer
harukasao
0
220
20250623 Findy Lunch LT Brown
3150
0
800
新卒3年目の後悔〜機械学習モデルジョブの運用を頑張った話〜
kameitomohiro
0
400
ひとり情シスなCTOがLLMと始めるオペレーション最適化 / CTO's LLM-Powered Ops
yamitzky
0
390
強化されたAmazon Location Serviceによる新機能と開発者体験
dayjournal
2
170
Clineを含めたAIエージェントを 大規模組織に導入し、投資対効果を考える / Introducing AI agents into your organization
i35_267
4
1.4k
AWS アーキテクチャ作図入門/aws-architecture-diagram-101
ma2shita
29
9.5k
「Chatwork」の認証基盤の移行とログ活用によるプロダクト改善
kubell_hr
1
110
Featured
See All Featured
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
228
22k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
30
2.1k
KATA
mclloyd
29
14k
4 Signs Your Business is Dying
shpigford
184
22k
The World Runs on Bad Software
bkeepers
PRO
69
11k
How to Ace a Technical Interview
jacobian
277
23k
Done Done
chrislema
184
16k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
Site-Speed That Sticks
csswizardry
10
650
Writing Fast Ruby
sferik
628
61k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
16
940
The Art of Programming - Codeland 2020
erikaheidi
54
13k
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