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
500
Git and Github: Tips and tricks
dellsystem
2
380
Git and Github: version control for the 21st century
dellsystem
1
280
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
400
diva.js: A web-based document viewer for high-resolution images
dellsystem
0
340
Other Decks in Technology
See All in Technology
AI時代のデータセンターネットワーク
lycorptech_jp
PRO
1
280
CustomCopを使ってMongoidのコーディングルールを整えてみた
jinoketani
0
220
Amazon VPC Lattice 最新アップデート紹介 - PrivateLink も似たようなアップデートあったけど違いとは
bigmuramura
0
190
生成AIをより賢く エンジニアのための RAG入門 - Oracle AI Jam Session #20
kutsushitaneko
4
210
Oracle Cloudの生成AIサービスって実際どこまで使えるの? エンジニア目線で試してみた
minorun365
PRO
4
270
AWS re:Invent 2024 ふりかえり
kongmingstrap
0
130
Microsoft Azure全冠になってみた ~アレを使い倒した者が試験を制す!?~/Obtained all Microsoft Azure certifications Those who use "that" to the full will win the exam! ?
yuj1osm
1
110
Kubeshark で Kubernetes の Traffic を眺めてみよう/Let's Look at k8s Traffic with Kubeshark
kota2and3kan
3
370
ハイテク休憩
sat
PRO
2
110
ガバメントクラウドのセキュリティ対策事例について
fujisawaryohei
0
520
アップデート紹介:AWS Data Transfer Terminal
stknohg
PRO
0
170
マルチプロダクト開発の現場でAWS Security Hubを1年以上運用して得た教訓
muziyoshiz
2
2.1k
Featured
See All Featured
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
10
810
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5.1k
GitHub's CSS Performance
jonrohan
1030
460k
Product Roadmaps are Hard
iamctodd
PRO
49
11k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
95
17k
Embracing the Ebb and Flow
colly
84
4.5k
[RailsConf 2023] Rails as a piece of cake
palkan
53
5k
What's in a price? How to price your products and services
michaelherold
243
12k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.3k
The MySQL Ecosystem @ GitHub 2015
samlambert
250
12k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
2
290
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