Change user information for Git commits
·1 min
Run the following to change Git user information globally:
git config --global user.name "Ketan Vijayvargiya"
git config --global user.email "hi@ketanvijayvargiya.com"
To change on a repository level, simply omit the --global
flag.