Skip to content

Instantly share code, notes, and snippets.

@calufa
Last active August 29, 2015 14:01
Show Gist options
  • Save calufa/b90eecaa6aaa5f5c1831 to your computer and use it in GitHub Desktop.
Save calufa/b90eecaa6aaa5f5c1831 to your computer and use it in GitHub Desktop.
How to push changes to github
# to add all the changes do
git add ./
# now you need to commit the changes
git commit -am "some text explaining the changes"
# lastly we push the changes to github
git push origin master
### all the commands in 1 line
git add ./ && git commit -am "some text explaining the changes" && git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment