Search code examples
gitphpstorm

PhpStorm default git author


In PhpStorm I am having difficulty setting the default git author in the project settings:

I used the "Action finder" and searched through the settings, but I have not found this option.

Does anyone know where I can change this value, so I don't have to change it on every commit?


Solution

  • Thanks to the information given by Andrew I was able to find a solution:

    Go to your project folder \ .git \ config and add the lines below:

    [user]
    name = Your Name
    email = [email protected]
    

    I hope this was helpful for other PhpStorm and git users.