Answers for "github create repository in repository"

1

git create a new repository

echo "# content" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/sandy1310/content.git
git push -u origin main
Posted by: Guest on September-07-2021
0

git, repository, new repository

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

Code answers related to "github create repository in repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language