Error when “git push” to github

前端 未结 5 1715
不知归路
不知归路 2020-11-29 03:51

I have a public repository at github.com with 2 branches : master and test.

I created a new directory locally and did:

[          


        
5条回答
  •  余生分开走
    2020-11-29 04:02

    I think here you will need to set up branch tracking. Please run the following to enable tracking

    git branch --track my_test origin/my_test
    

    To test

    git push -u origin my_test
    git pull origin my_test
    

提交回复
热议问题