Git 推送失败,“非快进更新被拒绝”

我已经通过 GIT Online 编辑了我的 GIT 知识库。在我尝试推送本地代码更改之后,出现了一个错误:

Git push failed, To prevent from losing history, non-fast forward updates were rejected.

我该怎么补救?

195098 次浏览

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/

I encountered the same error, just add "--force" to the command, it works

git push origin master --force

(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.

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've hade the same problem. I resolved with

git checkout <name branch>
git pull origin <name branch>
git push origin <name branch>

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.

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.

The safest way to solve this is using --rebase

E.g.

git pull <remote> <branch> --rebase

This probably will cause conflicts on your local branch and you will need to fix them manually.

Once you resolve all the conflicts you can push your changed 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 when you rebased, the push is rejected and you're forced to rebase your branch again.

It is a bit annoying if you are working on a large project with hundreds of commits every minute 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 here.

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

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