Why call git branch --unset-upstream to fixup?

后端 未结 8 1287
夕颜
夕颜 2020-12-12 09:42

I\'m more of a novice when it comes to advanced operations in git. I maintain my blog using the blogging framework Octopress. Though Octopress is not under any development s

8条回答
  •  囚心锁ツ
    2020-12-12 10:23

    This might solve your problem.

    after doing changes you can commit it and then

    git remote add origin https://(address of your repo) it can be https or ssh
    then
    git push -u origin master
    

    hope it works for you.

    thanks

提交回复
热议问题