Benzo
Benzo

Reputation: 81

Change commit name - Github

I need to know how I can change this commit name:

enter image description here

Upvotes: 1

Views: 982

Answers (1)

VonC
VonC

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

Related Questions