I had lots of changes in my local git fork, I do:
git add -A
git commit -m "commit message"
- pull changes from upstream master
- rebase
git push
to my origin
Now It happens that there are several other commits (from others) between my previous commit and my new commit.
I want to see all the changes done by me in my new commit and work on it. So, I do
git reset --soft <my previous commit>
It shows files modified by me and also by others.
Question:
- What would be the way to see files modified only by me?
- And then the files are shown as modified, is it possible to unstage them? I want to see the changes when I do
git diff
.