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.
我是 Git 的超级新手,我确实是这样的:
我现在该如何解决我标记的这个烂摊子?我只是想创建一个新分支并在那里添加一个文件,但我合并了一些东西。
您必须执行的命令是git merge [branchname].
git merge [branchname]
您需要执行的命令是git checkout -b [new_branchname] && git add [files...] && git commit.
git checkout -b [new_branchname] && git add [files...] && git commit
要撤消合并,请使用git reset HEAD^(仅一次) - 您可能需要使用--hard.
git reset HEAD^
--hard
如果这不是你的意思,请澄清你的问题。