Tag: reset
-
Git Reset – A tool to correct your (commited) mistakes.
Terminologies The index is not the working directory, you can type a command such as git status, and git will tell you what files in your working directory have been added to the git index (for example, by using the git add filename command). In simple words, git reset is to correct your mistakes. Consider…