0

! [rejected] User1 -> User1 (fetch first) error: failed to push some refs

i cant able to push my datas to the project . Its rejected. The belwo message is shown in frequent.

To ssh://(IP-Address)/john/testing.git
 ! [rejected]        User1 ->  User1 (fetch first)
error: failed to push some refs to ' ssh://git@(IP-Address)/john/testing.git' 
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first 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.

How to solve this error.

Linux gitlab Add a comment
lincoln
asked May 04 2017

Answer

0

To solve this issue, just give --force option. But it may conflict.

To avoid --force option follow the below steps,

  1. Click on the respective project.
  2. At the first line there will be Last Commit > Values. Near to that there will be Copy icon (Copy commit SHA to clipboard)
  3. Then give git reset (Value copied from before step)
  4. Once its done, give git status

Note: If --hard option is used, all files will be removed and sync with Master.

Add a comment
jagannatharumugam
asked May 04 2017
edited Oct 05 2018
Post your Answer