Reputation: 81
I need to know how I can change this commit name:
Upvotes: 1
Views: 982
Reputation: 1329682
At least, try and change your git config user.name
to what you want to see (assuming you are the one making those commits).
Then make a new commit, push and see that the commit name you have underlined has indeed changed.
If that applies, then you can reset the author name for past commits if you want.
A git push --force
will be required.
Upvotes: 1