Answers for "connect to git with cmd"

1

how to connect to a git repo in cmd

git config --global user.name "your_username"
git config --global user.email "[email protected]"
# then try to clone a repo anywhere on your desktop
# This will trigger a username password prompt after which you are logged in
Posted by: Guest on August-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language