Skip to content

Instantly share code, notes, and snippets.

@shiftyp
Created April 17, 2016 23:10
Show Gist options
  • Save shiftyp/bdf04f9b45668188a57714a6e30e93f5 to your computer and use it in GitHub Desktop.
Save shiftyp/bdf04f9b45668188a57714a6e30e93f5 to your computer and use it in GitHub Desktop.
Notes from GitHub Like A Pro Workshop

Git Commands

Start your work from your main branch like so:

# to tell waffle.io that you are starting an issue
# the key part of the branch name is `#1-`, 
# everything else is up to you.

git checkout -b feature/#1-first-issue
git push -u origin feature/#1-first-issue

That moves the issue into the “In Progress” column. Remember that I made a separate column for "In Review" that contained all PR’s? If you don’t choose to do that then you can tell waffle.io to move your pr’s wherever by starting your PR title with Closes #1. Everything else in the title can be whatever. Then when you merge the PR the issue will be moved into the Done column.

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