Search Suggest

How to set Git commit User Name and Email address

Set git commit user name
git config --global user.name "FirstName LastName"

Check git commit user name
git config --global user.name

Set git commit email address
git config --global user.email "email@example.com"

Check git commit email address
git config --global user.email

Đăng nhận xét