Getting an error pushing to github - Updates were rejected because a pushed branch tip is behind its remote

前端 未结 3 1771
既然无缘
既然无缘 2020-12-01 14:44

I am having a problem pushing to a different heroku remote.

To check myself I renamed my entire project directory to _backup and then:

git clone acco         


        
相关标签:
3条回答
  • 2020-12-01 15:03

    If you pull the other repo first:

    git pull repo2

    This will merge in the other repos's changes which you can add and commit.

    Then you can push the repo back.

    0 讨论(0)
  • 2020-12-01 15:09

    If you don't care about what's currently in repo2 and are confident that totally overwriting it is ok then you can use:

    $ git push -f git@heroku.com:<heroku repo name>.git
    

    Remember though that push -f can wipe out other developers changes if they were posted since you last pulled from the repo... so always use with extreme caution on multi-developer teams!
    In this case heroku is always downstream and github is where the code is managed and maintained so this makes push -f on heroku a safer option that it would otherwise be.

    0 讨论(0)
  • 2020-12-01 15:24

    I am always a big fan of using git pull --rebase and then git push origin master . A couple of the places I have worked since a lot of places do not allow a push -f (especially places that use bitbucket).

    git pull --rebase 
    git push origin master
    

    The rebase will apply your changes after those already to the remote (online website). This video literally goes over your exact issue and solves it using git pull --rebase https://youtu.be/IhkvMPE9Jxs?t=10m36s

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