GIT基础知识 - 硕士和专题分支

时间:2017-10-15 01:43:03

标签: git

我已经开始了一个项目,我已经完成了10个模型中的一个模型。

但我刚刚在bitbucket上创建了一个存储库。我想知道将我当前完成的模型推送到主设备和后续模型是否是特色分支是一个好主意。

1 个答案:

答案 0 :(得分:0)

Git branches are generally used when the code needs to be working in between releases. If I'm writing an application and want to add a big feature, this could take some time and the application might not compile while I'm writing that code. If I do the modifications in a new branch I can apply bug fixes to the master branch and whatnot while playing with me new feature branch :)

In short: just use one branch :)