我开始使用 Git + GitHub。
In our distributed team, each member is creating their own branch for each issue/requirement they are allocated.
git branch Issue#1 <-- create this branch
git checkout issue#1 <-- switch over to this branch
now code code
, commit
, code
, commit
, etc...
然后是 pull request
、 code-fixup
、 commit
、 code
、 commit
等等。
and finally the pull request is accepted.
但是,现在怎么办?
在本地开发机器上创建分支的人员是否需要关闭分支?有人建议开发人员删除分支 ( ... -D ...)
,然后对主服务器进行提取/刷新。.然后得到他们所有的分行代码。