Answers for "creating the repository in git bash"

0

create new repository in git bash

echo "# BarProject" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Mahmoud-creator/BarProject.git
git push -u origin main
Posted by: Guest on November-27-2021

Code answers related to "creating the repository in git bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language