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.
我对我的分支进行了更改,当我尝试将分支合并到主干(主)时,我收到了以下错误消息:
我提交了所有更改,但我仍然无法合并。难道我做错了什么?
您并没有真正提交所有更改。除非您使用 -a 选项,否则 Git commit 只会提交阶段性更改。
打开终端,转到存储库文件夹。运行:
git status
它应该显示未分级的更改。手动添加它们或一次添加所有它们:
git add .
然后提交
git commit -m "Foo"