Skip to content

Instantly share code, notes, and snippets.

@garrettwilkin
Created October 18, 2013 01:26
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 garrettwilkin/7035063 to your computer and use it in GitHub Desktop.
Save garrettwilkin/7035063 to your computer and use it in GitHub Desktop.
Git steps from Raymond.
Not pushing branch
==================
1. git branch feature_name
2. git checkout feature_name
3. vim awesome_file && make awesome_changes
4. git commit --verbose awesome_file
5. git show (review changes briefly)
6. git checkout master
7. git rebase feature_name
8. git pull --rebase origin master
9. git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment