我有一个master
分支,another_branch
有两倍的文件。
为什么我git checkout master
然后git merge another_branch
说Already up-to-date.
并且没有将额外的文件合并到master
?
(是的,我已经git add .
签了another_branch
git commit
。master
说没有什么可以提交的。)
我已经看过this帖子和this帖子,但到目前为止没有任何效果。
编辑:another_branch
分支包含文件,another-branch
分支具有相同的文件以及更多文件。为什么不合并那些额外的文件?
编辑:我通过将文件从master
复制到外部文件夹,检出another_branch
,从外部文件夹复制文件,添加所有新文件和制作来解决了问题一个新的提交。
来想一想,我想如果我在{{1}}做了一个小改动然后提交,我本来可以将所有东西合并到主人,但我没有尝试。
答案 0 :(得分:0)
您必须在another_branch上提交您的文件。只需添加git add即可。是不足够的。