您好,登錄后才能下訂單哦!
這篇文章主要介紹了git的revert和reset有哪些區別的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇git的revert和reset有哪些區別文章都會有所收獲,下面我們一起來看看吧。
git revert和git reset的區別
git revert 是生成一個新的提交來撤銷某次提交,此次提交之前的commit都會被保留
git reset 是回到某次提交,提交及之前的commit都會被保留,但是此次之后的修改都會被退回到暫存區
具體一個例子,假設有三個commit, git st:
commit3: add test3.c
commit2: add test2.c
commit1: add test1.c
當執行git revert HEAD~1時, commit2被撤銷了
git log可以看到:
revert "commit2":this reverts commit 5fe21s2...
commit3: add test3.c
commit2: add test2.c
commit1: add test1.c
git status 沒有任何變化
如果換做執行git reset --soft(默認) HEAD~1后,運行git log
commit2: add test2.c
commit1: add test1.c
運行git status, 則test3.c處于暫存區,準備提交。
如果換做執行git reset --hard HEAD~1后,
顯示:HEAD is now at commit2,運行git log
commit2: add test2.c
commit1: add test1.c
運行git st, 沒有任何變化
另外:
git revert <commit log string>是撤消該commit,作為一個新的commit。
關于“git的revert和reset有哪些區別”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“git的revert和reset有哪些區別”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。