Git 撤回本地Commit

Git 撤回本地Commit

应用场景之一如下:本地提交的一个文件过大(超过200M),然后push到Gitee受限,不得不回撤提交并删除或者压缩过大的文件

$ git log

查看提交记录

commit a1181ff4a326543b544bf5ec4074bf5ac43fd1e5 (HEAD -> develop_tabBar)
Author: Thomas 
Date:   Mon Aug 19 17:46:04 2019 +0800

    【我想撤回的记录】
    
commit d2469d4def16daeabec2d714551db28c013b7240 (origin/develop_tabBar)
Author: Thomas 
Date:   Mon Aug 19 17:13:21 2019 +0800

    [我是一次提交]

git reset --soft|--mixed|--hard {commit_id}

  • --mixed
    会保留源码,只是将git commit和index 信息回退到了某个版本.
  • --soft
    保留源码,只回退到commit信息到某个版本.不涉及index的回退,如果还需要提交,直接commit即可.
  • --hard
    源码也会回退到某个版本,commit和index 都会回退到某个版本.(注意,这种方式是改变本地代码仓库源码)

$git reset --soft a1181ff4a326543b544bf5ec4074bf5ac43fd1e5

你可能感兴趣的:(Git 撤回本地Commit)