Answers for "creating 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
1

github create repo from terminal

git init -b main
Posted by: Guest on September-28-2021

Code answers related to "creating a repo from terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language