Answers for "git set up"

5

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 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
0

git set up

git remote add origin https://github.com/simon3073/to-do-list-app.git
git branch -M main
git push -u origin main
Posted by: Guest on April-14-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language