DEV Community

Mohd. Shafikur Rahman
Mohd. Shafikur Rahman

Posted on

Project specific git configuration

Sometimes we need to project specific git user configuration.

How we achieve this?
Just run following command in project directory.

git config --local user.name "AuthorName" 
git config --local user.email "AuthorEmail@mail.com" 
Enter fullscreen mode Exit fullscreen mode

Now all commit author will be new name and email for configured project.

That's all!

Top comments (0)