Git reset and revert

git reset [<mode>] [<commit>]

This form resets the current branch head to <commit> and possibly 
updates the index (resetting it to the tree of <commit>) and the 
working tree depending on <mode>. If <mode> is omitted, defaults 
to --mixed. The <mode> must be one of the following:

soft

  Does not touch the index file or the working tree at all (but resets 
  the head to <commit>, just like all modes do). This leaves all your 
  changed files "Changes to be committed", as git status would put it.

hard

Resets the index and working tree. Any changes to tracked files in       
the working tree since <commit> are discarded.

git revert

  Given one or more existing commits, revert the changes that the 
  related patches introduce, and record some new commits that 
  record them. This requires your working tree to be clean (no 
  modifications from the HEAD commit).


  Note: *git revert* is used to record some new commits to reverse     
  the effect of some earlier commits (often only a faulty one). If you 
  want to throw away all uncommitted changes in your working 
  directory, you should see [git-reset[1]](https://git-scm.com/docs/git-
  reset), particularly the `--hard` option. If you want to extract 
  specific files as they were in another commit, you should see [git-
  checkout[1]](https://git-scm.com/docs/git-checkout), specifically 
  the `git checkout <commit> -- <filename>` syntax. Take care with 
  these alternatives as both will discard uncommitted changes in 
  your working directory.
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容