Answers for "how to initialize github local repo"

2

git initialize repository

echo "# covid19-tracker-app" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/shubhamghimire/covid19-tracker-app.git
git push -u origin main
Posted by: Guest on February-23-2022

Code answers related to "how to initialize github local repo"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language