I notice that when I reinstall and encounter a merge conflict, it has incremental changes for the current commit, so it's easy to find what has been done in the commit and change it, but then you can also just do a 'git rebase -continue' and it apply this change with the same commitments message as before.
Is there a way to make this happen for specific commits or all commits, so I can easily reinstall and edit the previous changes that I made to work with the changes that I reset? It seems like it would be a lot easier than just setting the editing in all commits, and then doing βgit reset --soft HEAD ~β so that the changes are visible, and I can verify that they make sense for the new HEAD, the editing and the need run 'git commit -m "message".
My use case is that in the repository I'm working with, its file structure was greatly reorganized, and git failed to make the appropriate changes, but says that the merge was successful.
Thanks!
git
Gdyendell
source share