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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Phill Brown
January 26, 2012
Technology
2
130
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
技術キャッチアップ効率化を実現する記事推薦システムの構築
yudai00
2
160
[続・営業向け 誰でも話せるOCI セールストーク] AWSよりOCIの優位性が分からない編(2026年2月20日開催)
oracle4engineer
PRO
0
140
Exadata Fleet Update
oracle4engineer
PRO
0
1.3k
【2026年版】生成AIによる情報システムへのインパクト
taka_aki
0
190
AIに視覚を与えモバイルアプリケーション開発をより円滑に行う
lycorptech_jp
PRO
1
570
AI Coding Agentの地殻変動 ~ ai-coding.info の定点観測 ~
kotauchisunsun
1
490
20260222ねこIoTLT ねこIoTLTをふりかえる
poropinai1966
0
310
LLM活用の壁を超える:リクルートR&Dの戦略と打ち手
recruitengineers
PRO
1
170
Introduction to Bill One Development Engineer
sansan33
PRO
0
380
フルカイテン株式会社 エンジニア向け採用資料
fullkaiten
0
10k
Snowflakeデータ基盤で挑むAI活用 〜4年間のDataOpsの基礎をもとに〜
kaz3284
1
290
Vertex AI Agent Engine で学ぶ「記憶」の設計
tkikuchi
0
110
Featured
See All Featured
A better future with KSS
kneath
240
18k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
54k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Are puppies a ranking factor?
jonoalderson
1
3k
Imperfection Machines: The Place of Print at Facebook
scottboms
269
14k
Design of three-dimensional binary manipulators for pick-and-place task avoiding obstacles (IECON2024)
konakalab
0
370
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
35
2.4k
Measuring Dark Social's Impact On Conversion and Attribution
stephenakadiri
1
140
SEO Brein meetup: CTRL+C is not how to scale international SEO
lindahogenes
0
2.4k
Why You Should Never Use an ORM
jnunemaker
PRO
61
9.8k
Keith and Marios Guide to Fast Websites
keithpitt
413
23k
Tips & Tricks on How to Get Your First Job In Tech
honzajavorek
0
450
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