Git报错:Updates were rejected because the tip of your current branch is behind

使用git的过程中有时候会出现无法push的问题,报错如下图:
Git报错:Updates were rejected because the tip of your current branch is behind_第1张图片
这是由于远程repository和我本地的repository冲突造成,通常发生在多人协作的开发过程中

解决方法:
1.使用强制push的方法:

git push -u origin master -f 

这样会使远程修改丢失,一般是不可取的

2.push前先将远程repository修改pull下来

 git pull origin master
 git push -u origin master

3.若不想merge远程和本地修改,可以先创建新的分支:

 git branch [name]  
 git push -u origin [name]

多人协作的开发过程,一般推荐熟练使用分支功能来进行代码的托管,这样就会避免冲突的发生。

你可能感兴趣的:(Git)