Answers for "how to create a github repo"

5

how to create new repository in github

git init
• git add .
• git commit -m "first commit"
• git remote add
            origin https://github.com/sd1511/FinraDeck.git
• git push -u origin master
Posted by: Guest on January-27-2021
0

how to create a github repo

echo "# ANDERSON" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Anderson68-chale/ANDERSON.git
git push -u origin main
Posted by: Guest on June-18-2021
0

how to create a github repo

git remote add origin https://github.com/Anderson68-chale/ANDERSON.git
git branch -M main
git push -u origin main
Posted by: Guest on June-18-2021

Code answers related to "how to create a github repo"

Browse Popular Code Answers by Language