Answers for "git 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
3

git config list

git config --global --list
Posted by: Guest on November-23-2020
1

how to set up git for github

$ git config --global user.name "Your name here"
$ git config --global user.email "[email protected]"
Posted by: Guest on September-06-2020
0

git user config

$ git config --local user.name "John Doe"
$ git config --local user.email [email protected]
Posted by: Guest on November-20-2020
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