When I check "amend latest commit" in SourceTree, I would like to see all the files that were included in that commit in the "Staged files" area, so that I can easily exclude a file and then redo the commit.
Git GUI has this functionality.
Is it possible to unstage files (from previous commit) when doing amend in SourceTree?
Two options for removing those files:
1)You can delete them from your system, and stage the removal, or find the files in SourceTree and choose "Stop Tracking" if you want to keep them.
2) Reset to the previous commit, and re-commit (instead of amending).
You should only do a reset if you haven't pushed the commit, though. A soft reset will move the branch pointer back without changing the working directory. You can then stage only those changes you want to commit, and commit again. This is almost certainly what Git GUI is really doing underneath the hood.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
True, if you've pushed the commit, you shouldn't be resetting OR amending. Both operations modify the history, which can give headaches to team members that have already fetched it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yea, this is prior to a push, but I still want to be able to "add" and "remove" from the latest commit. (Its a ways of working for me, I isually push to a temp-commit in my feature-branch and then add/remove changes from that until I am ready ^_^)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What are you hoping to achieve by unstaging? Are you wanting to remove those files, or just reverse changes made in them?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.