Answers for "how to push code into github reposityory"

0

how to push code into github reposityory

echo "# PdfReaderApplication" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin urllink.git
git push -u origin main
Posted by: Guest on April-12-2022
0

how to push code into github reposityory

echo "# PdfReaderApplication" >> README.md
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin urllink.git
git push -u origin main
Posted by: Guest on April-12-2022

Code answers related to "how to push code into github reposityory"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language