Run the following to change Git user information globally:
git config --global user.name "Ketan Vijayvargiya"
git config --global user.email "[email protected]"
To change on a repository level, simply omit the --global
flag.
Run the following to change Git user information globally:
git config --global user.name "Ketan Vijayvargiya"
git config --global user.email "[email protected]"
To change on a repository level, simply omit the --global
flag.