Answers for "how to upload repository in github"

0

initialize a repo and push to github

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
Posted by: Guest on December-01-2020
-3

how to link a repo to a project on github

$ git init
Posted by: Guest on December-10-2019

Code answers related to "how to upload repository in github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language