如何将git存储库切换到特定的提交

在我的git存储库中,我做了5次提交,如下所示:

commit 4f8b120cdafecc5144d7cdae472c36ec80315fdc
Author: Michael
Date:   Fri Feb 4 15:26:38 2011 -0800


commit b688d46f55db1bc304f7f689a065331fc1715079
Author: Michael
Date:   Mon Jan 31 10:37:42 2011 -0800


commit b364f9dcec3b0d52666c4f03eb5f6efb7e1e7bda
Author: Michael
Date:   Wed Jan 26 13:33:17 2011 -0800


commit 4771e26619b9acba3f059b491c6c6d70115e696c
Author: Michael
Date:   Wed Jan 26 11:16:51 2011 -0800


commit 6e559cb951b9bfa14243b925c1972a1bd2586d59
Author: Michael
Date:   Fri Jan 21 11:42:27 2011 -0800

我怎么能回滚我的前4次提交本地分支? 换句话说,我怎么能在没有最近4次提交的情况下创建一个分支(假设我有从git日志中提交的SHA)?< / p >

446711 次浏览

如果你想扔掉最近的4次提交,使用:

git reset --hard HEAD^^^^

或者,你可以指定一个你想要重置的提交的哈希值:

git reset --hard 6e559cb

创建一个新的分支(本地):

  • 包含提交散列(或部分)

    git checkout -b new_branch 6e559cb
    
  • or to go back 4 commits from HEAD

    git checkout -b new_branch HEAD~4
    

Once your new branch is created (locally), you might want to replicate this change on a remote of the same name: How can I push my changes to a remote branch


For discarding the last three commits, see Lunaryorn's answer below.


For moving your current branch HEAD to the specified commit without creating a new branch, see Arpiagar's answer below.

只需签出您希望新分支开始的提交并创建一个新分支

git checkout -b newbranch 6e559cb95

上面所有的命令都创建了一个新的分支,并且最新的提交是命令中指定的,但是为了防止你想让你当前的分支HEAD移动到指定的提交,下面是命令:

 git checkout <commit_hash>

分离并将HEAD指向指定的提交,当用户只想查看该特定提交前的分支状态时,可以避免创建新分支。


然后你可能想回到最近的提交&固定分离的HEAD:

修复一个Git分离头?< / >

我如何回滚我的前4个提交本地分支?

这意味着你没有创建新的分支并进入分离状态。 新的方法是:

git switch --detach revison

使用新的git开关命令,我们可以:

  • git switch -c <new-branch> <commit>创建一个名为<new-branch>的新分支,从<commit>开始
  • git switch --detach <commit>切换到一个提交检查和可丢弃的实验。详见分离的头