Answers for "create a new repository in github using git bash"

6

git bash new repository

git init
git add -A
git commit -m 'Added my project'
git remote add origin [email protected]:sammy/my-new-project.git
git push -u -f origin master
git clone url
git fetch
git push (to check)
Posted by: Guest on January-17-2021

Code answers related to "create a new repository in github using git bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language