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
300
Other Decks in Technology
See All in Technology
パフォーマンスチューニングのために普段からできること/Performance Tuning: Daily Practices
fujiwara3
2
120
ヘンリー会社紹介資料(エンジニア向け) / company deck for engineer
henryofficial
0
390
AIエージェントによる業務効率化への飽くなき挑戦-AWS上の実開発事例から学んだ効果、現実そしてギャップ-
nasuvitz
5
1.2k
Oracle Base Database Service 技術詳細
oracle4engineer
PRO
14
82k
入院医療費算定業務をAIで支援する:包括医療費支払い制度とDPCコーディング (公開版)
hagino3000
0
110
Retrospectiveを振り返ろう
nakasho
0
110
NLPコロキウム20251022_超効率化への挑戦: LLM 1bit量子化のロードマップ
yumaichikawa
3
470
MCP ✖️ Apps SDKを触ってみた
hisuzuya
0
370
Kubernetes self-healing of your workload
hwchiu
0
540
知覚とデザイン
rinchoku
1
580
RemoteFunctionを使ったコロケーション
mkazutaka
1
110
可観測性は開発環境から、開発環境にもオブザーバビリティ導入のススメ
layerx
PRO
0
310
Featured
See All Featured
A Tale of Four Properties
chriscoyier
161
23k
Typedesign – Prime Four
hannesfritz
42
2.8k
Building Applications with DynamoDB
mza
96
6.7k
How to train your dragon (web standard)
notwaldorf
97
6.3k
Building a Scalable Design System with Sketch
lauravandoore
463
33k
Thoughts on Productivity
jonyablonski
70
4.9k
Documentation Writing (for coders)
carmenintech
75
5.1k
Learning to Love Humans: Emotional Interface Design
aarron
274
41k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
132
19k
Testing 201, or: Great Expectations
jmmastey
45
7.7k
Product Roadmaps are Hard
iamctodd
PRO
55
11k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.5k
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