Created
December 17, 2009 22:05
-
-
Save sprsquish/259067 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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