REJECTED_NONFASTFORWARD error in git remote push Netbeans

I am working on a remote git and find a remote that I am trying to PUSH to push my new changes to another remote (to connect to the original / master) and even send a PULL or PUSH Pull from upstream the screen is locked on the image screen the enter image description here progress is already stuck on the screen, I want to do: take PULL, MERGE and then send my new files with PUSH. How to proceed? I'm using NetBeans IDE 8.0 (windows) .

After that the error appears: enter image description here And in the final release:

Remote Repository Updates
    Branch Update : master
    Old Id        : 0000000hgfh0000fdffgg1f32g1fdg2fd1gd1g2fd
    New Id        : 0000dsadda000hgfh06546f32g1fdg2fd1gd1g2fd
    Result        : REJECTED_NONFASTFORWARD
    Local Repository Updates
    Branch Update : origin/master
    Old Id        : 0000000hgfh0000fdffgg1f32g1fdg2fd1gd1g2fd
    New Id        : 0000dsadda000hgfh06546f32g1fdg2fd1gd1g2fd
    Result        : NOT_ATTEMPTED
    ==[IDE]== 24/06/2015 21:54:14 Pushing

      

+3


source to share


1 answer


You need to pull first as the remote has new commits that you don't have on your local machine. You are trying to push.



+4


source







All Articles