connect local repo with remote repo

后端 未结 2 1476
春和景丽
春和景丽 2020-12-23 00:10

I have a local repo. I created the whole app but now I want to push it to remote repo. I already have remote repo as well. How can I connect these two repos without losing a

相关标签:
2条回答
  • 2020-12-23 00:50
    git remote add origin <remote_repo_url>
    git push --all origin
    

    If you want to set all of your branches to automatically use this remote repo when you use git pull, add --set-upstream to the push:

    git push --all --set-upstream origin
    
    0 讨论(0)
  • 2020-12-23 00:57

    I know it has been quite sometime that you asked this but, if someone else needs, I did what was saying here " How to upload a project to Github " and after the top answer of this question right here. And after was the top answer was saying here "git error: failed to push some refs to" I don't know what exactly made everything work. But now is working.

    0 讨论(0)
提交回复
热议问题