Answers for "create a git repository from a project"

0

create a new repository on the command line

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

create a new repository on the command line

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

Code answers related to "create a git repository from a project"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language