Answers for "how to create repository from terminal"

0

create a new repository using command line

echo "# facebook-clone" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/sulaimanwebdev/facebook-clone.git
git push -u origin main
Posted by: Guest on May-28-2021
0

create a new repository using command line

echo "# facebook-clone" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/sulaimanwebdev/facebook-clone.git
git push -u origin main
Posted by: Guest on May-28-2021
0

create a new repository on the command line

# create a new repository on the command line

echo "# README" >> README.md
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:AnassAzeroual/bash-basic-scripts.git
git push -u origin main
Posted by: Guest on September-04-2021
0

create a new repository on the command line

# create a new repository on the command line

echo "# README" >> README.md
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:AnassAzeroual/bash-basic-scripts.git
git push -u origin main
Posted by: Guest on September-04-2021

Code answers related to "how to create repository from terminal"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language