I have a branch and few commits done by some other person. I committed few more changes to the same branch. Now i am squashing all commits to one single commit using below commands.
git rebase -i HEAD~2
From the displayed commit list changed the first commit from pick to reword second one from pick to squash then modified the commit message to some meaningful msg git push --force
Now when i see on the remote the author/committer name is still showing the old author name. Is there a way i can have this name changed to mine as i am the recent committer?