Skip to content

Instantly share code, notes, and snippets.

@vbalnt
Last active October 24, 2016 12:10
Show Gist options
  • Save vbalnt/66320c410ca71a8700bcb999911c865a to your computer and use it in GitHub Desktop.
Save vbalnt/66320c410ca71a8700bcb999911c865a to your computer and use it in GitHub Desktop.
Git workflow
  • git pull (to get other people's changes - run this before any change you make)
  • make changes in your local copy of the repo
  • git add * to add your changes
  • git commit -m "your message with your changes here"to commit your changes
  • git push to push your changes for everyone else
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment