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
Git and Github: Version control for a happier you
Search
Wendy Liu
April 11, 2015
Technology
0
310
Git and Github: Version control for a happier you
Lightning talk for McFullStack.
Wendy Liu
April 11, 2015
Tweet
Share
More Decks by Wendy Liu
See All by Wendy Liu
Optimising your JavaScript
dellsystem
1
510
Git and Github: Tips and tricks
dellsystem
2
380
Git and Github: version control for the 21st century
dellsystem
1
290
Django: The web framework for perfectionists with deadlines
dellsystem
0
390
Git and GitHub: an introduction
dellsystem
2
250
What's in a name? Using first names as features for gender inference in Twitter
dellsystem
1
420
diva.js: A web-based document viewer for high-resolution images
dellsystem
0
340
Other Decks in Technology
See All in Technology
20250208_OpenAIDeepResearchがやばいという話
doradora09
PRO
0
170
Oracle Base Database Service 技術詳細
oracle4engineer
PRO
6
57k
30分でわかる『アジャイルデータモデリング』
hanon52_
9
2.2k
10分で紹介するAmazon Bedrock利用時のセキュリティ対策 / 10-minutes introduction to security measures when using Amazon Bedrock
hideakiaoyagi
0
170
Nekko Cloud、 これまでとこれから ~学生サークルが作る、 小さなクラウド
logica0419
2
730
Googleマップ/Earthが一般化した 地図タイルのイマ
mapconcierge4agu
1
200
Tech Blogを書きやすい環境づくり
lycorptech_jp
PRO
0
120
日経電子版 x AIエージェントの可能性とAgentic RAGによって提案書生成を行う技術
masahiro_nishimi
1
290
テストアーキテクチャ設計で実現する高品質で高スピードな開発の実践 / Test Architecture Design in Practice
ropqa
3
710
FastConnect の冗長性
ocise
1
9.6k
技術的負債解消の取り組みと専門チームのお話 #技術的負債_Findy
bengo4com
1
1.2k
Postmanを使いこなす!2025年ぜひとも押さえておきたいPostmanの10の機能
nagix
2
120
Featured
See All Featured
Art, The Web, and Tiny UX
lynnandtonic
298
20k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.4k
Automating Front-end Workflow
addyosmani
1367
200k
Building a Modern Day E-commerce SEO Strategy
aleyda
38
7.1k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
The Art of Programming - Codeland 2020
erikaheidi
53
13k
Rails Girls Zürich Keynote
gr2m
94
13k
StorybookのUI Testing Handbookを読んだ
zakiyama
28
5.5k
A designer walks into a library…
pauljervisheath
205
24k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
6
540
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
7
630
Transcript
McFullStack :: April 11, 2015 version control for a happier
you and :
about me
about me - Wendy Liu
about me - Wendy Liu - McGill Math & Computer
Science '14
about me - Wendy Liu - McGill Math & Computer
Science '14 - 4 years experience with Git
about me - Wendy Liu - McGill Math & Computer
Science '14 - 4 years experience with Git - @dellsystem on Twitter
what is git?
what is git? version control system!
backup_dec_1_2012.zip backup_dec_8_2012.zip backup_dec_15_2012.zip backup_dec_22_2012.zip backup_dec_29_2012.zip backup_jan_5_2012.zip backup_jan_12_2012.zip backup_jan_19_2012.zip backup_jan_26_2012.zip
None
enter git.
keeps track of changes enter git.
keeps track of changes extremely flexible enter git.
keeps track of changes extremely flexible developed by linus torvalds
enter git.
keeps track of changes extremely flexible developed by linus torvalds
free and open source enter git.
keeps track of changes extremely flexible developed by linus torvalds
free and open source primarily command-line enter git.
svn/perforce: local vs. remote comparison to other systems
svn/perforce: local vs. remote hg/bzr: more control comparison to other
systems
svn/perforce: local vs. remote hg/bzr: more control cvs/rcs: no comparison
comparison to other systems
what git can do for you
what git can do for you history
what git can do for you history blame
what git can do for you history blame better debugging
what git can do for you history blame better debugging
safe experimentation
what git can do for you history blame better debugging
safe experimentation easy deploys
now: how git works
repository directory on filesystem just metadata (changes) manual grouping of
changes
commit group of logically-related changes 1 or more files (add/delete/modify)
staging index CHANGES I WANT IN MY NEXT COMMIT ALL
THE OTHER CHANGES
git commit -m 'test' CHANGES I WANT IN MY NEXT
COMMIT ALL THE OTHER CHANGES a new commit, with message 'test'
CHANGES I WANT IN MY NEXT COMMIT ALL THE OTHER
CHANGES the commit with message 'test' (nothing here yet)
good commit messages (not this)
good commit messages bit.ly/gitcommit
website what is github?
website collaborative coding, via git what is github?
website collaborative coding, via git (mostly) free to use what
is github?
website collaborative coding, via git (mostly) free to use major
part of developer ecosystem (esp. OSS) what is github?
what github can do for you issue-tracking remote backups access
your files from anywhere graphical, easy-to-use UI
thanks! git-scm.com/book help.github.com