We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is what the current README has:
$ git checkout HEAD^ myfile $ git add myfile $ git commit --amend --no-edit
This has the disadvantage of reverting the change entirely.
Another option is to use:
$ git reset HEAD^ myfile $ git commit --amend --no-edit
which is one less command, and preserves the changes to the file in the working tree, while removing it from the commit.
The text was updated successfully, but these errors were encountered:
Good point. PR welcome!
Sorry, something went wrong.
No branches or pull requests
This is what the current README has:
This has the disadvantage of reverting the change entirely.
Another option is to use:
which is one less command, and preserves the changes to the file in the working tree, while removing it from the commit.
The text was updated successfully, but these errors were encountered: