Last active
January 7, 2016 21:39
-
-
Save janecakemaster/7fb6dd4224bedd679f6a to your computer and use it in GitHub Desktop.
git commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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