Answers for "github how to create new repository"

0

create a new repository on Github

echo "# visitor_management" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M Master
git remote add origin https://github.com/aymenit2008/visitor_management.git
git push -u origin Master
Posted by: Guest on August-04-2021
0

github create repo

git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/<your username>/<repository>.git
git push -u origin main
Posted by: Guest on November-02-2021

Code answers related to "github how to create new repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language