Skip to content

Instantly share code, notes, and snippets.

@janecakemaster
Last active January 7, 2016 21:39
Show Gist options
  • Save janecakemaster/7fb6dd4224bedd679f6a to your computer and use it in GitHub Desktop.
Save janecakemaster/7fb6dd4224bedd679f6a to your computer and use it in GitHub Desktop.
git commands
# check status
git status
# add file to staging
git add index.html
# commit with shorthand command
git commit -m "message"
# or to use text editor
git commit
# time to push
git push
# pull from github
git pull
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment