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
AWSで推進するデータマネジメント
kawanago
0
350
シークレット管理だけじゃない!HashiCorp Vault でデータ暗号化をしよう / Beyond Secret Management! Let's Encrypt Data with HashiCorp Vault
nnstt1
2
130
Webアクセシビリティ入門
recruitengineers
PRO
3
1.4k
カミナシ社の『ID管理基盤』製品内製 - その意思決定背景と2年間の進化 #AWSUnicornDay / Kaminashi ID - The Big Whys
kaminashi
3
630
衝突して強くなる! BLUE GIANTと アジャイルチームの共通点とは ― いきいきと活気に満ちたグルーヴあるチームを作るコツ ― / BLUE GIANT and Agile Teams
naitosatoshi
0
270
7月のガバクラ利用料が高かったので調べてみた
techniczna
3
780
PRDの正しい使い方 ~AI時代にも効く思考・対話・成長ツールとして~
techtekt
PRO
0
100
mruby(PicoRuby)で ファミコン音楽を奏でる
kishima
2
480
【 LLMエンジニアがヒューマノイド開発に挑んでみた 】 - 第104回 Machine Learning 15minutes! Hybrid
soneo1127
0
200
フルカイテン株式会社 エンジニア向け採用資料
fullkaiten
0
8.6k
エキサイトブログの トップページを 段階的にリプレイスする
zsp2088dev
0
150
ヘブンバーンズレッドのレンダリングパイプライン刷新
gree_tech
PRO
0
340
Featured
See All Featured
Build your cross-platform service in a week with App Engine
jlugia
231
18k
GraphQLの誤解/rethinking-graphql
sonatard
71
11k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
36
2.5k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
Git: the NoSQL Database
bkeepers
PRO
431
65k
BBQ
matthewcrist
89
9.8k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Art, The Web, and Tiny UX
lynnandtonic
302
21k
How GitHub (no longer) Works
holman
315
140k
Typedesign – Prime Four
hannesfritz
42
2.8k
Into the Great Unknown - MozCon
thekraken
40
2k
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