Home > OS >  How to remove personal data from commit menu in IntellIJ Idea?
How to remove personal data from commit menu in IntellIJ Idea?

Time:03-23

Is there a way to remove personal data from IntellIJ Idea commit menu? Because if I not specify author it will use my personal account and it's kinda awkward

enter image description here

CodePudding user response:

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

  • Related