Skip to content

Instantly share code, notes, and snippets.

@sprsquish
Created December 17, 2009 22:05
Show Gist options
  • Save sprsquish/259067 to your computer and use it in GitHub Desktop.
Save sprsquish/259067 to your computer and use it in GitHub Desktop.
so my workflow is that each ticket gets a branch. Before merging the branch to master
it needs to be peer-reviewed. So sometimes I have a bunch of branches that are off
being reviewed while I work on something else.
Currently when I run "git branch" I see:
[branch 1]
[branch 2]
[branch 3]
*[branch 4]
[branch 5]
So in the case where [branch 1] and [branch 2] are in review I want to be able to mark
them as such. So that I see:
-[branch 1]
-[branch 2]
[branch 3]
*[branch 4]
[branch 5]
That way I have a quick overview of the state of each branch I'm working on.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment