Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 git 很陌生。
不久前我了解了 GitFlow,我想使用它,但是我的 master 分支中已经有很长的提交历史。
我可以将所有内容转移到开发中,这样我就可以获得整个历史记录,并且只提交我的最新版本来掌握?
我在我的 Mac 上使用 Tower,但我也很乐意使用命令行。
如果您还没有develop分支,您可以简单地在以下位置创建一个master:
develop
master
git checkout -b develop master~1
这样,最后一次提交仅master在master,所有其他提交都是新develop分支的一部分。