Answers for "git remote orign"

2

git connect to remote repository

git init
git commit -m "[message]"
git remote add origin "github repository link"
git push -u origin master
Posted by: Guest on August-21-2020
1

git remote

git remote add origin https://github.com/xxx/xxx-new.git
git branch -M main
git push -u origin main
Posted by: Guest on November-06-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language