当我有合并冲突时,我当前的工作流
git checkout develop
git pull origin develop
git checkout feature-branch
git merge develop
git push origin feature-branch在最近的代码审查中,我的分支没有意识到develop中的文件已被删除/移动。这是正确的合并方式吗?或者我应该将feature-branch合并到develop和push develop中?
发布于 2016-08-31 00:35:13
如果您想将develop合并到feature中,那么您的过程是正确的。注意:您没有使用pull origin feature。也许这部分引入了错误,因为您合并了feature的本地(不是最新的)副本。
如果你和其他人一起工作,如果你总是
https://stackoverflow.com/questions/39232134
复制相似问题