press
ESC
for slides overviewpress
← ↑ → ↓
for slides navigation
OR
click on the navigation buttons on the slides
DS501 - WPI - 16Spring
$ git clone <url> # clone from remote host and develop locally
$ git log --oneline --graph --decorate # briefly show repository's history logs
$ git status # check the status of current working tree
$ git add # add files to be tracked / for staging
$ git commit -m <commit-msg> # commit as history snapshots with meaningful message
$ git push origin # pushing to github( defaults to master )
$ git pull origin # feching and merging( defaults to master )
$ git remote show origin # show remote repository