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"
Now all commit author will be new name and email for configured project.
That's all!
Top comments (0)