Git reset

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Internal

Overview

git reset resets the current working state to the last commit, or the specified commit.

git reset file-name

Discard All Local Changes to Tracked Files

git reset --hard HEAD

Resets the index and the working tree to the specified commit, by discarding all local changes to the tracked files. The following files are restored:

  • tracked files that are locally modified
  • tracked files that are locally modified and committed
  • tracked files that are locally deleted
  • tracked files that are locally deleted and committed

Note that newly added and untracked files and directories are not removed. Use git clean for this.

Other Use Cases

Local and remote origin branches have diverged without activity on the local branch

Local and remote origin branches have diverged without activity on the local branch

Resync the Feature Branch with the State of its Tracking Branch

git reset --hard origin/<feature-branch>
git reset --hard origin/task/test

Drop Commits from the Local Feature Branch

This may be necessary if an unwanted merge has been performed, and we want to get rid of it (in the example below, we get rid of exactly one commit, which is the HEAD of the branch):

git reset --hard HEAD~1
git push --force

Reverting a File to a Specific Commit

Reverting and Individual File to a Specific Past Commit