Git push won't do anything (everything up-to-date)

后端 未结 16 2345
轻奢々
轻奢々 2020-12-04 05:38

I\'m trying to update a Git repository on GitHub. I made a bunch of changes, added them, committed then attempted to do a git push. The response tells me that e

16条回答
  •  时光说笑
    2020-12-04 06:13

    Right now, it appears as you are on the develop branch. Do you have a develop branch on your origin? If not, try git push origin develop. git push will work once it knows about a develop branch on your origin.

    As further reading, I'd have a look at the git-push man pages, in particular, the examples section.

提交回复
热议问题