Git push failed, "Non-fast forward updates were rejected"
I've edited my GIT repositories via Git Online. After I tried to push my local code changes, I got an error:
Git push failed, To prevent 开发者_StackOverflow中文版from losing history, non-fast forward updates were rejected.
How can I fix this?
Pull changes first:
git pull origin branch_name
Add --force to your command line if you are sure you want to push. E.g. use git push origin --force
(I recommend the command line as you will find much more support from other users with the command line. Also this may not be possible with SmartGit.) See this site for more information: http://help.github.com/remotes/
Before pushing, do a git pull with rebase option. This will get the changes that you made online (in your origin) and apply them locally, then add your local changes on top of it.
git pull --rebase
Now, you can push to remote
git push
For more information take a look at Git rebase explained and Chapter 3.6 Git Branching - Rebasing.
I encountered the same error, just add "--force" to the command, it works
git push origin master --force
The safest way to solve this is using --rebase
E.g.
git pull <remote> <branch> --rebase
This may cause conflicts in your local branch, and you will need to fix them manually.
Once you resolve all the conflicts, you can push your change with --force-with-lease
E.g.
git push <remote> <branch> --force-with-lease
Using this flag, Git checks if the remote version of the branch is the same as the one you rebase, i.e. if someone pushed a new commit while you were rebasing, the push is rejected, and you will be forced to rebase your branch again.
It is annoying if you are working on a large project with hundreds of commits every hour, but it is still the best way to solve this problem.
AVOID USING --force unless you know exactly what you are doing.
Using --force
is destructive because it unconditionally overwrites the remote repository with whatever you have locally.
But with --force-with-lease
, ensure you don't overwrite other's work.
See more info on this post in Atlassian's developer blog.
I've had the same problem.
The reason was, that my local branch had somehow lost the tracking to the remote counterpart.
After
git branch branch_name --set-upstream-to=origin/branch_name
git pull
and resolving the merging conflicts, I was able to push.
Using the --rebase
option worked for me.
git pull <remote> <branch> --rebase
Then push to the repo.
git push <remote> <branch>
E.g.
git pull origin master --rebase
git push origin master
(One) Solution for Netbeans 7.1: Try a pull. This will probably also fail. Now have a look into the logs (they are usually shown now in the IDE). There's one/more line saying:
"Pull failed due to this file:"
Search that file, delete it (make a backup before). Usually it's a .gitignore file, so you will not delete code. Redo the push. Everything should work fine now.
I've hade the same problem. I resolved with
git checkout <name branch>
git pull origin <name branch>
git push origin <name branch>
This is what worked for me. It can be found in git documentation here
If you are on your desired branch you can do this:
git fetch origin
# Fetches updates made to an online repository
git merge origin YOUR_BRANCH_NAME
# Merges updates made online with your local work
Encountered the same problem, to solve it, run the following git
commands.
git pull {url} --rebase
git push --set-upstream {url} master
You must have created the repository on github first.
Sometimes, while taking a pull from your git, the HEAD gets detached. You can check this by entering the command:
git branch
(HEAD detached from 8790704)
master
develop
It's better to move to your branch and take a fresh pull from your respective branch.
git checkout develop
git pull origin develop
git push origin develop
精彩评论