Answers for "create a repo from terminal"

1

create new repo cli

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin [email protected]:alexpchin/<reponame>.git
git push -u origin master
Posted by: Guest on February-25-2021
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

Code answers related to "create a repo from terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language