Skip to content

Instantly share code, notes, and snippets.

@cheezedigital
Created January 20, 2015 14:59
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 cheezedigital/8c0a11947ceedd9c3fbd to your computer and use it in GitHub Desktop.
Save cheezedigital/8c0a11947ceedd9c3fbd to your computer and use it in GitHub Desktop.
proper work flow for git and github
git fetch
git checkout -b cl-### origin/sprint015
To commit your changes:
git add .
git commit -am "Commit message"
git push origin cl-###
To create pull request:
1. Visit https://github.com/hgslabs/cls3
2. A yellow box will pop up asking if you want to create a pull request. Click "Compare and create".
3. Select "sprint015" as the first branch to compare and "cl-###" as the second branch to compare.
4. Click "Create pull request".
5. Notify the developers of the new pull request so they know that it's ready to be reviewed.
When pull request has been approved, merge cl-### into the sprint015 branch by clicking "Merge".
Make sense?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment