Skip to content

Instantly share code, notes, and snippets.

@medun
Last active November 9, 2015 21:16
Show Gist options
  • Save medun/fb5cf177661b7c2a4885 to your computer and use it in GitHub Desktop.
Save medun/fb5cf177661b7c2a4885 to your computer and use it in GitHub Desktop.
International Sprint Process

##Create a new branch associated with your card

  1. git checkout develop
  2. git pull origin develop
  3. git checkout -b [my-lovely-branch]

##Commit and push your branch

  1. git add .
  2. git commit -m 'my commit message'
  3. git push origin [my-lovely-branch]

##Rebase against develop

  1. git checkout develop
  2. git pull origin develop
  3. git checkout [my-lovely-branch]
  4. git rebase -i develop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment