Skip to content

Instantly share code, notes, and snippets.

@jgeewax
Created September 12, 2010 03:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgeewax/575800 to your computer and use it in GitHub Desktop.
Save jgeewax/575800 to your computer and use it in GitHub Desktop.
$ git branch
* master
$ git feature my-new-feature
this will create a feature branch my-new-feature to be merged into master (Y/n): Y
$ git branch
* features/my-new-feature
master
$ # Do some work here, commit it...
$ git finish
this will integrate my-new-feature into master (Y/n): Y
$ git branch
* master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment