Skip to content

Instantly share code, notes, and snippets.

@rothsa
Last active August 29, 2015 13:57
Show Gist options
  • Save rothsa/9440473 to your computer and use it in GitHub Desktop.
Save rothsa/9440473 to your computer and use it in GitHub Desktop.
Pull Requests

How to have fun with issues and pull requests on GitHub:

http://www.emoji-cheat-sheet.com/

How to push a new branch:

  1. git checkout -b test_branch
  2. sublime README.md
  3. git status
  4. git add README.md
  5. git commit -m "example change"
  6. git push -u origin test_branch

How to make a pull request:

Go look on the repo on Github.com, look for the green 'Compare & Pull Request Button' Look at Files Changed, make comments on lines of code, merge when everyone is happy with the code changes (or the person who's signing off on it) If someone commits directly after you push your new branch, go look at branchs on the GitHub GUI and there will be a button to start a pull request on/in there.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment