Git two competitive commits in different branches -


I got the status:

  1. I'm preparing to decide for a problem Was there. / Li>
  2. I pulled the request for upstream remote.
  3. Someone else was preparing to decide for a problem.
  4. Someone else is improving; My bridge request has been accepted.
  5. My pull request has been rejected.

    What is the best thing to do now to bring my origin back to the remote head?

    You just need to bring the origin, and rebase your current branch over it.
    It may be enough to be

      git pull -rebase upstream   

    You were using your fix, you can check the other branch after that, however, It does not mean to reapply for any improvement, which has already been accepted (with a different commitment than a separate bridge request).

    It assumes that you have forked while mentioning 'upstream', original repo in your local repo.
    Once you have done your work in progress, once upgraded upstream, you can push the original (your fork) back.

    fork at the butt hole

Comments

Popular posts from this blog

excel vba - How to delete Solver(SOLVER.XLAM) code -

github - Teamcity & Git - PR merge builds - anyway to get HEAD commit hash? -

ios - Replace text in UITextView run slowly -