1. 程式人生 > >git取消本地commit

git取消本地commit

python 如果 區別 cnblogs bsp 徹底 aca pytho 撤銷

如果不小心commit了一個不需要commit的文件,可以對其進行撤銷。

先使用git log 查看 commit日誌

    commit 422bc088a7d6c5429f1d0760d008d86c505f4abe  
    Author: zhyq0826 <[email protected]>  
    Date:   Tue Sep 4 18:19:23 2012 +0800  
      
        刪除最近搜索數目限制  
      
    commit 8da0fd772c3acabd6e21e85287bdcfcfe8e74c85  
    Merge: 461ac36 0283074  
    Author: zhyq0826 <[email protected]
/* */> Date: Tue Sep 4 18:16:09 2012 +0800

找到需要回退的那次commit的 哈希值,

git reset --hard commit_id

使用上面的命令進行回退

關於git reset命令,包括 --mixed,--soft --hard等,其中--mixed為默認方式,他們之間的區別如下

git reset –mixed:此為默認方式,不帶任何參數的git reset,即時這種方式,它回退到某個版本,只保留源碼,回退commit和index信息
git reset –soft:回退到某個版本,只回退了commit的信息,不會恢復到index file一級。如果還要提交,直接commit即可
git reset –hard:徹底回退到某個版本,本地的源碼也會變為上一個版本的內容

git reset -soft :取消了commit
git reset -mixed(默認) :取消了commit ,取消了add
git reset -hard :取消了commit ,取消了add,取消源文件修改

git取消本地commit