1

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

enter image description here

ChrisGPT was on strike
  • 127,765
  • 105
  • 273
  • 257
Benzo
  • 79
  • 8
  • 1
    Possible duplicate of [How to change the author and committer name and e-mail of multiple commits in Git?](https://stackoverflow.com/questions/750172/how-to-change-the-author-and-committer-name-and-e-mail-of-multiple-commits-in-gi) – Vasilisa Mar 10 '19 at 13:40
  • I tried that but nothing change – Benzo Mar 10 '19 at 15:18
  • Have you read https://help.github.com/en/articles/why-are-my-commits-linked-to-the-wrong-user? If so, please clearly explain what you're still confused about. – ChrisGPT was on strike Mar 10 '19 at 19:35

1 Answers1

1

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.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250