Git冲突:commit your changes or stash them before you can merge. 解决办法

转载https://www.cnblogs.com/wenlj/p/5866356.html

用git pull来更新代码的时候,遇到了下面的问题:

error:Your local changes to the following files would be overwritten bymerge:vue.config.jsPlease commit your changes or stash them before you merge.

出现这个问题的原因是其他人修改了xxx.php并提交到版本库中去了,而你本地也修改了xxx.php,这时候你进行git pull操作就好出现冲突了,解决方法,在上面的提示中也说的很明确了。

1、保留本地的修改 的改法

1)直接commit本地的修改 ----也一般不用这种方法

2)通过git stash  ---- 通常用这种方法

git stashgit pullgit stash pop

通过git stash将工作区恢复到上次提交的内容,同时备份本地所做的修改,之后就可以正常git pull了,git pull完成后,执行git stash pop将之前本地做的修改应用到当前工作区。

git stash: 备份当前的工作区的内容,从最近的一次提交中读取相关内容,让工作区保证和上次提交的内容一致。同时,将当前的工作区内容保存到Git栈中。

git stash pop: 从Git栈中读取最近一次保存的内容,恢复工作区的相关内容。由于可能存在多个Stash的内容,所以用栈来管理,pop会从最近的一个stash中读取内容并恢复。

git stash list: 显示Git栈内的所有备份,可以利用这个列表来决定从那个地方恢复。

git stash clear: 清空Git栈。此时使用gitg等图形化工具会发现,原来stash的哪些节点都消失了。

2、放弃本地修改 的改法  ----这种方法会丢弃本地修改的代码,而且不可找回

git reset --hardgit pull

git 拉取仓库指定目录

// 在本地指定文件夹内执行此命令设置为git仓库git init// 拉取remote all objects信息// 添加远程仓库地址,实现拉取remote的all objects信息git remoteaddorigin http://github/xxx.git// 开启sparse clone// 用于控制是否允许设置pull指定文件/夹,适用于Git1.7.0以后版本,本质是开启sparse clonegit config core.sparsecheckouttrue// 本地目录的.git文件夹下,如果没有sparse-checkout文件则创建,在其中添加指定的文件/夹fileName,就是需要拉取的那个特定文件/夹。*表示所有,!表示匹配相反echo"fileName">>.git/info/sparse-checkout// 查看cat.git/info/sparse-chechout// 拉取指定目录// 拉取命令是一样的,只是已经通过配置文件sparse-chechout指定了目标文件/夹git pull origin master

Please make sure you have the correct access rights and the repository exists 公钥出问题了

在git设置一下身份的名字和邮箱

git config--globaluser.name"yourname"git config--globaluser.email"[email protected]"

删除 .ssh 文件夹【C:\Users(本地用户名).ssh】 中的 known_hosts(手动删除即可)

ssh-keygen -t rsa -C "[email protected]"(请填你设置的邮箱地址)

出现 Enter file in which to save the key (/Users/username/.ssh/id_rsa):  按回车

返回 /Users/your username/.ssh/id_rsa already exists.Overwrite (y/n)?  如果以前有存储地址输入y回车

Enter passphrase(empty for no passphrase): 如果以前没有储存地址就会出现这个,直接回车就好

运行完成时 :username/.ssh/id_rsa.pub.(注:username为你git上的用户名)中发现,已经新生成了id_rsa和id_rsa.pub两个文件

打开id_rsa.pub将全部的内容复制,到 git服务器的 “设置”  >  “安全设置”  >  “ssh公钥”

image.png

image.png

image.png

gitee

作者:吉他手_c156

链接:https://www.jianshu.com/p/1a6e929ef405

来源:

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

你可能感兴趣的:(Git冲突:commit your changes or stash them before you can merge. 解决办法)