Answers for "git local setup"

2

git setup

$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
$ git config --global push.default matching
$ git config --global alias.co checkout
$ git init
Posted by: Guest on June-02-2021
0

git local setup

git config --global user.name "Tanju Gümüs"
git config --global user.email "[email protected]"
Posted by: Guest on July-02-2021
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

Browse Popular Code Answers by Language