Skip to content
New issue

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

Removing changes to a file from the previous commit #277

Open
glandium opened this issue Aug 7, 2019 · 1 comment
Open

Removing changes to a file from the previous commit #277

glandium opened this issue Aug 7, 2019 · 1 comment

Comments

@glandium
Copy link

glandium commented Aug 7, 2019

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.

@RichardLitt
Copy link
Collaborator

Good point. PR welcome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants