There isn't anything to compare. Nothing to compare, branches are entirely different commit histories

后端 未结 18 885
北恋
北恋 2020-12-12 22:54

I have a CMS theme installed on my machine. I\'m tracking changes to it via git and decided to back it up on GitHub so I could share those changes.

The theme as prov

18条回答
  •  隐瞒了意图╮
    2020-12-12 23:09

    I solve my issue using these commands

    git checkout [BRANCH]   
    git branch master [BRANCH] -f   
    git checkout master   
    git push origin master -f
    

提交回复
热议问题