Answers for "create new repo with cmd"

0

Creating a New Repo on the command line

echo "# handydandydevblog" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:githubuserName/urProjectsname.git
git push -u origin main
Posted by: Guest on December-16-2021
0

to create repo from cmd

curl -X POST https://api.github.com/user/repos
Posted by: Guest on May-12-2021

Code answers related to "create new repo with cmd"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language