Shell/Bash: change user in git repository Example
Shell/Bash Example: This is the "change user in git repository" Example. compiled from many sources on the internet by SimpleTutorials.org
change user in git repository
git config user.email "[email protected]" git config user.name "Your Name" git config user.password "your password"
change user in git repository
git config --global user.email "[email protected]" git config --global user.name "Your Name" git config --global user.password "your password"
* Summary: This "change user in git repository" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!