1. 程式人生 > >git 取消本地 commit (未push)

git 取消本地 commit (未push)

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

先使用git log 檢視 commit日誌

Python程式碼  收藏程式碼
  1. commit 422bc088a7d6c5429f1d0760d008d86c505f4abe  
  2. Author: zhyq0826 <[email protected]>  
  3. Date:   Tue Sep 4 18:19:23 2012 +0800  
  4.     刪除最近搜尋數目限制  
  5. commit 8da0fd772c3acabd6e21e85287bdcfcfe8e74c85  
  6. Merge: 461ac36 0283074  
  7. Author: zhyq0826 <
    [email protected]
    >  
  8. Date:   Tue Sep 4 18:16:09 2012 +0800  

找到需要回退的那次commit的 雜湊值,

git reset --hard commit_id 


找到需要回退的那次commit的 雜湊值,

git reset --hard commit_id 

 使用上面的命令進行回退

以下是豆瓣的

蒼炎的日記

起因: 不小新把記錄了公司伺服器IP,賬號,密碼的檔案提交到了git

方法:

    git reset --hard <commit_id>

    git push origin HEAD --force





其他:

    根據–soft –mixed –hard,會對working tree和index和HEAD進行重置:
    git reset –mixed:此為預設方式,不帶任何引數的git reset,即時這種方式,它回退到某個版本,只保留原始碼,回退commit和index資訊
    git reset –soft:回退到某個版本,只回退了commit的資訊,不會恢復到index file一級。如果還要提交,直接commit即可
    git reset –hard:徹底回退到某個版本,本地的原始碼也會變為上一個版本的內容


    HEAD 最近一個提交
    HEAD^ 上一次
    <commit_id> 每次commit的SHA1值. 可以用git log 看到,也可以在頁面上commit標籤頁裡找到