git-extras icon indicating copy to clipboard operation
git-extras copied to clipboard

Support private and proposed update branches

Open mbauhardt opened this issue 11 years ago • 1 comments

I love the usage of git feature|bug|refactor. But it would be nice to have the same for private branches like

<username>/<branchname> 

and proposed update branches

pu/<branchname> 

Because those branches are good markers (when they are online/pushed to remote) that these branches are maybe rebased and should not touched by another developer.

mbauhardt avatar Feb 21 '14 13:02 mbauhardt

you can do git alias myfeature"feature -a my-name/feature-name"

and then

git myfeature feature-name
git checkout master 
git myfeature finish feature-name

adrian-gierakowski avatar Apr 27 '17 08:04 adrian-gierakowski