当前位置:   article > 正文

git 出现 error: Your local changes to the following files would be overwritten by merge_git revert 6a974c546c0446fd2e081ef31c9fece7915d156

git revert 6a974c546c0446fd2e081ef31c9fece7915d156c error: your local change

git 出现 error: Your local changes to the following files would be overwritten by merge

1. 软件描述

git :git version 2.26.2.windows.1

2. 出现问题

```shell
error: Your local changes to the following files would be overwritten by merge:
		frontend/finance/views.py
Please commit your changes or stash them before you merge.
Aborting

```
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

3. 问题描述

1. 与朋友同时工作写代码,项目代码中有个a.php文件
2. 朋友发现a.php第50行有一个bug,进行更改了。
3. 一会我又发现a.php第100行还有一个问题,我也改了文件a.php
4. 朋友提交了问题a.php 执行步骤如下
```shell
    先更新
    git pull
	再提交
	git add a.php
	git commit -m "修改第50行的bug"
```

5. 经理过来了,说这个项目中b.php还有一个bug,让我修改一下,于是我又修改了b.php
6. 修改完毕,我准备提交

```shell
    先更新
    git pull(此处更新失败)
	提示:
	error: Your local changes to the following files would be overwritten by merge:
			frontend/finance/views.py
	Please commit your changes or stash them before you merge.
	Aborting

	说明有冲突,那我解决冲突,先把自己的文件提交
	git add a.php
	git commit -m "修改第50行的bug"
	我再更新,还是有问题。
	git pull 
```
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

4. 解决方法

1. 如果只执行到第4步骤,只更改了a.php其他没动,我就提交再更新一点问题没有,
	```shell
git add a.php
git commit -m '修改a.php b.php'
git pull
git push

```
2. 但是走到第6步骤,就有问题了,因为我还修改了b.php 这个时候需要把所有更改的文件添加,解决如下:
```shell
git add a.php b.php 
git commit -m '修改a.php b.php'
git pull
git push

```
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/608533
推荐阅读
相关标签
  

闽ICP备14008679号