Updating a remote git repository would mean all other users having a same source code. Sometimes, a local commit may be done and its found that there are changes that should not be push to the remote. The solution, remove not needed files then move to the previous commit on the local machine.
The command is
$ git reset --hard HEAD~1
Unstage any other files with the command
$ git reset
No comments:
Post a Comment