Skip to content

Instantly share code, notes, and snippets.

@dandye
Created January 16, 2017 13:33
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 dandye/a4b3f154aab6c1bbc082a21abc6bfd14 to your computer and use it in GitHub Desktop.
Save dandye/a4b3f154aab6c1bbc082a21abc6bfd14 to your computer and use it in GitHub Desktop.
Rebase and Squash before opening Pull Request
git checkout master
git pull
git checkout -b travis_runs_protractor_tests travis_integration_tests_for_edge_v2x
git rebase master
git log --pretty=format:"%h%x09%an%x09%ad%x09%s" -n 45
git rebase -i HEAD~32
git push origin travis_runs_protractor_tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment