Answers for "set git global"

55

git config global

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
Posted by: Guest on February-08-2020
0

git setup

echo "# your repo name" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin your-repo-link.git
git push -u origin main
Posted by: Guest on May-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language