petervanderdoes / gitflow-avh

AVH Edition of the git extensions to provide high-level repository operations for Vincent Driessen's branching model
http://nvie.com/posts/a-successful-git-branching-model/
Other
5.42k stars 527 forks source link

Any plan on enhancement on git co-development flow? #250

Open zheeeng opened 8 years ago

zheeeng commented 8 years ago

For example:

index git-flow git
1 git flow feature pull <feature name> git pull origin feature/<feature name>
2 git flow feature pull --rebase <feature name> git pull --rebase origin feature/<feature name>
3 git flow feature push <feature name> git push origin feature/<feature name>
4 git flow master track git push -u origin master
5 git flow develop track git push -u origin develop
6 git flow track git push -u origin master; git push -u origin develop
7 git flow master push git push origin master
8 git flow develop push git push origin develop
9 git flow fetch git fetch then create && track all corresponding branches at remote branches
10 git flow prune cleanup all branches which are deleted at remote
petervanderdoes commented 8 years ago

Some of these sound good.