Answers:
如果尚未推送更改,也可以进行软重置:
git reset --soft HEAD^
这将还原提交,但是将提交的更改放回索引中。假设分支之间的关系是相对最新的,git可以让您签入另一个分支,然后您可以简单地提交:
git checkout branch
git commit
缺点是您需要重新输入提交消息。
git reset --soft HEAD\^
在该主题上晚了4年,但这可能对某人有所帮助。
如果您在提交并在master上全部提交之前忘记创建一个新分支,那么无论您执行了多少次提交,以下方法都会更容易:
git stash # skip if all changes are committed
git branch my_feature
git reset --hard origin/master
git checkout my_feature
git stash pop # skip if all changes were committed
现在,您的master分支等于,origin/master
并且所有新的提交均已启用my_feature
。请注意,这my_feature
是本地分支,而不是远程分支。
master
,然后重置master
为origin/master
。
origin/master
您已经要重置其提交了!然而,对于尖端的信用是此页:github.com/blog/...
要回滚一个提交(请确保您记下下一步的提交哈希):
git reset --hard HEAD^
要将提交提交到另一个分支:
git checkout other-branch
git cherry-pick COMMIT-HASH
另请注意,这git reset --hard
将杀死您可能拥有的所有未跟踪和已修改的更改,因此,如果有,则可能更喜欢:
git reset HEAD^
git checkout .
git rev-parse BRANCH_NAME
得到的sha。
git reflog show <branch>
!
git stash
在重置之前使用,git stash pop
然后在恢复之后使用它,因此无需担心该--hard
部分
如果您已经推送了更改,则需要在重置HEAD之后强制下一次推送。
git reset --hard HEAD^
git merge COMMIT_SHA1
git push --force
警告:硬重置将撤消工作副本中所有未提交的修改,而强行推送将完全用本地分支的当前状态覆盖远程分支的状态。
以防万一,在Windows(使用Windows命令行而不是Bash)上,它实际上是四个^^^^
而不是一个,所以它是
git reset --hard HEAD^^^^
git reset --hard COMMIT_HASH
git push --force
最近,我做了同样的事情,当我本应致力于其他分支时,我不小心将更改提交给master。但是我什么也没推。
如果您只是提交给错误的分支,并且此后未做任何更改,也没有推送到存储库,则可以执行以下操作:
// rewind master to point to the commit just before your most recent commit.
// this takes all changes in your most recent commit, and turns them into unstaged changes.
git reset HEAD~1
// temporarily save your unstaged changes as a commit that's not attached to any branch using git stash
// all temporary commits created with git stash are put into a stack of temporary commits.
git stash
// create other-branch (if the other branch doesn't already exist)
git branch other-branch
// checkout the other branch you should have committed to.
git checkout other-branch
// take the temporary commit you created, and apply all of those changes to the new branch.
//This also deletes the temporary commit from the stack of temp commits.
git stash pop
// add the changes you want with git add...
// re-commit your changes onto other-branch
git commit -m "some message..."
注意:在上面的示例中,我使用git reset HEAD〜1倒带1次提交。但是,如果您想回退n次提交,则可以执行git reset HEAD〜n。
另外,如果您最终提交了错误的分支,并且在意识到自己提交了错误的分支之前还写了更多代码,则可以使用git stash来保存正在进行的工作:
// save the not-ready-to-commit work you're in the middle of
git stash
// rewind n commits
git reset HEAD~n
// stash the committed changes as a single temp commit onto the stack.
git stash
// create other-branch (if it doesn't already exist)
git branch other-branch
// checkout the other branch you should have committed to.
git checkout other-branch
// apply all the committed changes to the new branch
git stash pop
// add the changes you want with git add...
// re-commit your changes onto the new branch as a single commit.
git commit -m "some message..."
// pop the changes you were in the middle of and continue coding
git stash pop
注意:我使用此网站作为参考 https://www.clearvision-cm.com/blog/what-to-do-when-you-commit-to-the-wrong-git-branch/
git checkout -b new_branch
从那里做对了,提交是完整的,只是被推送并创建了PR,没有。不必再次提交。
因此,如果您的情况是您已承诺master
但打算承诺another-branch
(可能尚未存在)但尚未推送,则此问题很容易解决。
// if your branch doesn't exist, then add the -b argument
git checkout -b another-branch
git branch --force master origin/master
现在您的所有提交都master
将继续another-branch
。
充满爱意的来源:http : //haacked.com/archive/2015/06/29/git-migrate/
another-branch
已经存在。在这种情况下,它只是破坏了我要掌握的提交,而没有将它们付诸实施another-branch
。
为了阐述这个答案,如果你有多次提交到例如从移动develop
到new_branch
:
git checkout develop # You're probably there already
git reflog # Find LAST_GOOD, FIRST_NEW, LAST_NEW hashes
git checkout new_branch
git cherry-pick FIRST_NEW^..LAST_NEW # ^.. includes FIRST_NEW
git reflog # Confirm that your commits are safely home in their new branch!
git checkout develop
git reset --hard LAST_GOOD # develop is now back where it started
如果对您来说,大约只有1次提交,那么还有许多其他更容易的重置解决方案可用。对我来说,我偶然进行了约10次提交,master
而不是称之为branch_xyz
,并且我不想丢失提交历史记录。
您可以做些什么,而让我受益的是使用此答案作为参考,使用了四个步骤,即-
master
branch_xyz
master
以下是上述步骤的详细信息-
从中创建一个新分支master
(我不小心做了很多更改)
git checkout -b temp_branch_xyz
注意:-b
flag用于创建一个新的分支
只是为了验证我们是否正确,我将快速git branch
确定我们在该temp_branch_xyz
分支上,并git log
快速检查提交是否正确。
将临时分支合并到最初用于提交的分支中,即branch_xyz
。
首先,切换到原始分支,即branch_xyz
(git fetch
如果没有,则可能需要)
git checkout branch_xyz
注意:不使用-b
标志
现在,让我们将临时分支合并到当前已签出的分支中branch_xyz
git merge temp_branch_xyz
如果存在,您可能需要在这里解决一些冲突。成功合并后,您可以按(我会)或继续进行下一步。
撤消master
使用此答案作为参考的意外提交,首先切换到master
git checkout master
然后完全撤消它以匹配远程(或根据需要匹配特定的提交)
git reset --hard origin/master
同样,我会在执行git log
之前和之后进行一次操作,以确保预期的更改生效。
删除证据,即删除临时分支。为此,首先您需要检出已合并临时文件的分支,即branch_xyz
(如果继续master
执行下面的命令,则可能会得到error: The branch 'temp_branch_xyz' is not fully merged
),所以让我们
git checkout branch_xyz
然后删除此事故的证明
git branch -d temp_branch_xyz
妳去
如果您要应用更改的分支已经存在(例如,分支开发),请按照下面fotanus提供的说明进行操作,然后:
git checkout develop
git rebase develop my_feature # applies changes to correct branch
git checkout develop # 'cuz rebasing will leave you on my_feature
git merge develop my_feature # will be a fast-forward
git branch -d my_feature
显然,如果需要,可以使用tempbranch或任何其他分支名称代替my_feature。
另外,如果适用,请延迟隐藏存储(应用),直到在目标分支处合并之后。