Skip to content

Instantly share code, notes, and snippets.

@raulbrito
Created January 28, 2016 05:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raulbrito/23b5407eac65a4d9e10e to your computer and use it in GitHub Desktop.
Save raulbrito/23b5407eac65a4d9e10e to your computer and use it in GitHub Desktop.
Add commit to repo with latest changes
git status # allows to see the changes made
git add . # to add all the changed files. you can also add them one by one
git commit -m "description of changes made" # commits the changes locally
git push origin master # or any other remote repository and branch to you prefer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment