When I run git push origin <branch>
I have the error bellow:
$ git push origin <branch>
To https://bitbucket.org/folder.git
! [rejected] <branch> -> <branch> (non-fast-forward)
error: failed to push some refs to 'https://me@bitbucket.org/folder.git'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and integrate the remote changes
hint: (e.g. 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
When I run: git remote show origin
Local refs configured for 'git push':
<branch> pushes to <branch> (local out of date)
Community moderators have prevented the ability to post new answers.
Thanks for all the comments and help.
What happened was that there was commits in the remote master/origin.
Then I had to merge it into the branch I was working on. I did this by bitbucket website.
Locally I had to type the command: git branch --set-upstream-to=origin/<branch-name(remote)> <branch-name(local)>
Then, I could run push without problems.
Cinthia
You try to execute this command:
git push -f origin <branch>
Regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your answer.
I already tryed git pull. But still have the issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your branch is behind the upstream branch. Try doing:
git pull
and then do your push.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Community moderators have prevented the ability to post new answers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.