git-flow在远程git服务器上推送非就绪功能

时间:2017-01-26 10:39:07

标签: git git-branch git-flow git-workflow

我使用git flow方法,我需要有关如何在远程git服务器上推送非就绪功能的建议。

默认情况下,我们可以这样做(如果功能已完成)

git checkout -b feature develop
Do something...
git commit -am "Message"
git checkout develop
git merge --no-ff feature
git push origin develop
git push origin feature

如果我的功能尚未就绪,但我想将其推送到远程服务器上该怎么办?

我试图以这种方式这样做:

 git checkout -b feature develop
 Do something...
 git commit -am "Message"
 git push origin feature

但是,如果我看一下提交的图形方案,看起来像开发和功能是相同的分支(但当然它们不一样)。

2 个答案:

答案 0 :(得分:2)

您可以发布该功能:

$ git flow feature publish <name_of_feature>

看看这个git flow cheat sheet

答案 1 :(得分:0)

您可以在此处阅读更多内容,以进行比较等

https://gist.github.com/JamesMGreene/cdd0ac49f90c987e45ac