diff --git a/README.md b/README.md index 705a6f0..23cc643 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ Do you regret your changes to a GIT repository sometimes? That's when `git regre Simply run - sudo make install + sudo make install to install and - sudo make uninstall + sudo make uninstall to remove it. The requirements are GIT and Python 3. @@ -23,16 +23,16 @@ You have to be in a GIT repository to use `git-regret`. If you want to delete all changes you have made since the last commit, you would usually execute: - git reset --hard HEAD + git reset --hard HEAD `git regret` improves this: - git regret --soft + git regret --soft If you want to delete the last commit, but retain all changes, you would usually run: - git reset --soft HEAD^ + git reset --soft HEAD^ Or you can use `git regret`: - git regret --hard + git regret --hard