'How to remove personal data from commit menu in IntellIJ Idea?
Solution 1:[1]
It seems that you have entered your personal info when you were prompted to enter Username and Email.
You can run:
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
And this way it will change details for future commits
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Ruslan Kuleshov |

