openwrt_git_pull命令提示merger冲突时如何解决?
直接贴代码
tf@ubuntu:~/projects/openwrt1407$ git pull
Updating 331ecb0..d12dc6e
error: Your local changes to the following files would be overwritten by merge:
target/linux/ar71xx/base-files/lib/ar71xx.sh
target/linux/ar71xx/base-files/lib/upgrade/platform.sh
target/linux/ar71xx/config-3.10
target/linux/ar71xx/files/arch/mips/ath79/mach-dragino2.c
target/linux/ar71xx/image/Makefile
Please, commit your changes or stash them before you can merge.
Aborting
tf@ubuntu:~/projects/openwrt1407$ git stash *** Please tell me who you are. Run git config --global user.email "you@example.com"
git config --global user.name "Your Name" to set your account's default identity.
Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got 'tf@ubuntu.(none)')
Cannot save the current index state
tf@ubuntu:~/projects/openwrt1407$ git config --global user.email "lmgames@163.com"
tf@ubuntu:~/projects/openwrt1407$ git config --global user.name "tf"
tf@ubuntu:~/projects/openwrt1407$ git stash
Saved working directory and index state WIP on master: 331ecb0 mac80211: fix HT mode selection for ad-hoc
HEAD is now at 331ecb0 mac80211: fix HT mode selection for ad-hoc
tf@ubuntu:~/projects/openwrt1407$ git pull
^[^AUpdating 331ecb0..d12dc6e
Fast-forward
package/libs/openssl/Makefile | +-
package/libs/openssl/patches/-no_engines.patch | +-
.../libs/openssl/patches/-parallel_build.patch | +-
package/libs/polarssl/Makefile | +-
.../polarssl/patches/-gen_key_config_fix.patch | ----
.../libs/polarssl/patches/-CVE--.patch | ++
package/network/config/qos-scripts/Makefile | +-
package/network/ipv6/map/Makefile | +-
package/network/ipv6/map/files/map.sh | +
package/network/ipv6/map/src/mapcalc.c | +-
package/network/services/openvpn/Makefile | +-
.../patches/-backport_cipher_none_fix.patch | ++++++
target/linux/ar71xx/base-files/etc/diag.sh | +
.../ar71xx/base-files/etc/uci-defaults/01_leds | ++
.../ar71xx/base-files/etc/uci-defaults/02_network | +
target/linux/ar71xx/base-files/lib/ar71xx.sh | +
.../ar71xx/base-files/lib/upgrade/platform.sh | +
target/linux/ar71xx/config-3.10 | +
.../ar71xx/files/arch/mips/ath79/mach-dragino2.c | +++--
.../files/arch/mips/ath79/mach-tl-wa701nd-v2.c | +++++++++++++
target/linux/ar71xx/image/Makefile | +-
.../patches-3.10/-MIPS-ath79-fix-restart.patch | ++
.../-MIPS-ath79-add-TL-WA701NDv2-support.patch | +++++
.../patches-3.10/-net_bridge_backports.patch | +++++++++++++++++----
.../-bridge_optimize_netfilter_hooks.patch | +-
tools/firmware-utils/src/mktplinkfw.c | +
files changed, insertions(+), deletions(-)
delete mode package/libs/polarssl/patches/-gen_key_config_fix.patch
create mode package/libs/polarssl/patches/-CVE--.patch
create mode package/network/services/openvpn/patches/-backport_cipher_none_fix.patch
create mode target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wa701nd-v2.c
create mode target/linux/ar71xx/patches-3.10/-MIPS-ath79-add-TL-WA701NDv2-support.patch
tf@ubuntu:~/projects/openwrt1407$ git stash pop
Auto-merging target/linux/ar71xx/image/Makefile
Auto-merging target/linux/ar71xx/files/arch/mips/ath79/mach-dragino2.c
CONFLICT (content): Merge conflict in target/linux/ar71xx/files/arch/mips/ath79/mach-dragino2.c
Auto-merging target/linux/ar71xx/config-3.10
Auto-merging target/linux/ar71xx/base-files/lib/upgrade/platform.sh
Auto-merging target/linux/ar71xx/base-files/lib/ar71xx.sh
tf@ubuntu:~/projects/openwrt1407$
openwrt_git_pull命令提示merger冲突时如何解决?的更多相关文章
- 出现命令提示apt-get -f install的解决方法
提示apt-get -f install这个信息,然后查看其他的提示信息发现时缺少了一些以依赖库. 解决办法为执行:sudo apt-get -f install命令. 该命令的含义是去补全那些缺少的 ...
- cygwin中运行命令提示command not found的解决方法
在cygwin下运行ls等linux常见命令时出现“command not found”的提示,原因是环境变量没有配置好,因此只要将环境变量配置正确,即可正常使用.举例说明,cygwin安装在C盘根目 ...
- git 出现冲突时的解决办法
<一> 二者兼得最麻烦 1, 出现冲突一般出现在群体开发两个及以上开发者同时修改同一个文件时 2, 具体表现为 git pull , git push 和 git commit 命令执行失 ...
- Linux执行rm命令提示Argument list too long解决办法
在Linux上删除文件时,执行命令报错,报错信息如下:node1:/u01/app/oracle/admin/testdb/adump>rm -f *.aud-bash:/bin/rm:Argu ...
- 安装percona-xtrabackup一直提示依赖冲突的一个解决办法
我的Mysql是5.6版本,通过自己下载的rpm包执行安装: yum instal percona-xtrabackup-2.1.7-721.rhel6.x86_64.rpm 会出现如下的安装错误提示 ...
- vue.js与后台模板引擎“双花括号”冲突时的解决办法
后台渲染模板如swig,也使用“{{ }}“作为渲染,与前端vue的产生冲突,此时只要在新建Vue对象时,添加delimiters: ['${', '}'],就搞定了,代码如下 <!DOCTYP ...
- grep命令提示"binary file matches **.log"解决方法
仔细想想,这个问题遇到很多次了,之前一直以为很复杂,一搜索发现解决这么简单,记录一下做备忘. grep test XXX.log Binary file app.log matches 此时使用-a参 ...
- 碰到在Windows中访问局域网文件夹, 提示无法访问时的解决办法
运行:gpedit.msc 找到下图的位置, 启用即可
- input中blur失去焦点事件与点击事件冲突时如何解决
方法一 使用setTimeout $(function(){ $(".cy-name-input input").on({ focus:function() { $(". ...
随机推荐
- Android Studio 快捷键整理分享
Alt+回车 导入包,自己主动修正 Ctrl+N 查找类 Ctrl+Shift+N 查找文件 Ctrl+Alt+L 格式化代码 Ctrl+Alt+O 优化导入的类和包 Alt+Insert 生成 ...
- UVA 12538 Version Controlled IDE 解题报告
题意:给三种操作 1.在p位置插入一个字符串. 2.从p位置开始删除长度为c的字符串 3.输出第v个历史版本中从p位置开始的长度为c的字符串 解法:可以用平衡树做,但是不会.后来又听说可一用一个叫ro ...
- 09应用输入经理旋转场景--《猿学校课程Unity3d》
为什么极品飞车游戏等.,我们可以通过系统设置非常的方面根据自己喜欢的操作模式设置,有些人喜欢用箭头来控制不喜欢与使用"W,S,A,D"控制,这就解释程序猿不会死在程序写入内部控制, ...
- Android有关JNI 学习(两)为JNI方法名称,数据类型和方法签名的一些知识
我们知道,使用javah产生c/c++当在头文件,将java定义 native 功能,以产生相应jni层功能,如下面: /* * Class: com_lms_jni_JniTest * Method ...
- Android Notification (转)
上回我们提到在4.0ICS之后,Google为Android平台的Notification这把“倚天剑”注入了更多新鲜的元素,使其更加实用美观.Notification的样式从此变得丰富起来,以适应于 ...
- chrome扩展第三方浏览器下载安装
1.使用其他浏览器打开谷歌应用市场,复制扩展详情地址url 2. 粘贴到:http://chrome-extension-downloader.com/中进行扩展的下载. 3. 拖拽到chrome e ...
- 五通信算法:五种编码增益比较matlab模拟
1. 卷积编码增益性能.BER 信道环境:AWGN 信噪比SNR :0:0.1:6 MATALB仿真架构:源比特 +卷积码 +BPSK +AWGN +Viterbi +BER 说明:卷积编码,不同的R ...
- 文件I/O之-打开文件在内核中的表示
在unix系统中,一切皆文件.系统把文件夹.字符设备.块设备.套接字都当做文件来对待.对于文件的操作,使用I/O函数,这里所说的I/O函数是指系统调用.大多数文件的I/O要用到这5个函数:open.r ...
- OCP读书笔记(22) - 题库(ExamB)
101.Identify two situations in which you can use Data Recovery Advisor for recovery. (Choose two.) A ...
- 关于ACM,关于CSU
原文地址:http://tieba.baidu.com/p/2432943599 前言: 即将进入研二,ACM的事情也渐渐远去,记忆终将模糊,但那段奋斗永远让人热血沸腾.开个贴讲讲ACM与中南的故事, ...