Skip to content

Instantly share code, notes, and snippets.

@joshski
Created March 18, 2014 11:52
Show Gist options
  • Save joshski/9618592 to your computer and use it in GitHub Desktop.
Save joshski/9618592 to your computer and use it in GitHub Desktop.
My Git flow (am I weird?)
git checkout master
git pull origin master
[run tests]
[write failing test]
[make test pass]
git checkout -b feature_x
git add .
git commit -m "Feature X"
[refactor]
[run tests]
git commit -m "Feature X" --amend
git push origin feature_x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment