Skip to content

Instantly share code, notes, and snippets.

@clekstro
Created January 3, 2014 21:16
Show Gist options
  • Save clekstro/8246760 to your computer and use it in GitHub Desktop.
Save clekstro/8246760 to your computer and use it in GitHub Desktop.
sample git workflow
git checkout -b new_branch
git checkout master
git pull --rebase
git checkout new_branch
git rebase master
git checkout master
git merge new_branch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment