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