Git reset
Jump to navigation
Jump to search
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
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