直接贴代码

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冲突时如何解决?的更多相关文章

  1. 出现命令提示apt-get -f install的解决方法

    提示apt-get -f install这个信息,然后查看其他的提示信息发现时缺少了一些以依赖库. 解决办法为执行:sudo apt-get -f install命令. 该命令的含义是去补全那些缺少的 ...

  2. cygwin中运行命令提示command not found的解决方法

    在cygwin下运行ls等linux常见命令时出现“command not found”的提示,原因是环境变量没有配置好,因此只要将环境变量配置正确,即可正常使用.举例说明,cygwin安装在C盘根目 ...

  3. git 出现冲突时的解决办法

    <一> 二者兼得最麻烦 1, 出现冲突一般出现在群体开发两个及以上开发者同时修改同一个文件时 2, 具体表现为 git pull , git push 和 git commit 命令执行失 ...

  4. Linux执行rm命令提示Argument list too long解决办法

    在Linux上删除文件时,执行命令报错,报错信息如下:node1:/u01/app/oracle/admin/testdb/adump>rm -f *.aud-bash:/bin/rm:Argu ...

  5. 安装percona-xtrabackup一直提示依赖冲突的一个解决办法

    我的Mysql是5.6版本,通过自己下载的rpm包执行安装: yum instal percona-xtrabackup-2.1.7-721.rhel6.x86_64.rpm 会出现如下的安装错误提示 ...

  6. vue.js与后台模板引擎“双花括号”冲突时的解决办法

    后台渲染模板如swig,也使用“{{ }}“作为渲染,与前端vue的产生冲突,此时只要在新建Vue对象时,添加delimiters: ['${', '}'],就搞定了,代码如下 <!DOCTYP ...

  7. grep命令提示"binary file matches **.log"解决方法

    仔细想想,这个问题遇到很多次了,之前一直以为很复杂,一搜索发现解决这么简单,记录一下做备忘. grep test XXX.log Binary file app.log matches 此时使用-a参 ...

  8. 碰到在Windows中访问局域网文件夹, 提示无法访问时的解决办法

    运行:gpedit.msc 找到下图的位置, 启用即可

  9. input中blur失去焦点事件与点击事件冲突时如何解决

    方法一 使用setTimeout $(function(){ $(".cy-name-input input").on({ focus:function() { $(". ...

随机推荐

  1. Android Studio 快捷键整理分享

    Alt+回车 导入包,自己主动修正 Ctrl+N   查找类 Ctrl+Shift+N 查找文件 Ctrl+Alt+L  格式化代码 Ctrl+Alt+O 优化导入的类和包 Alt+Insert 生成 ...

  2. SQL Server 数据库索引

    原文:SQL Server 数据库索引 一.什么是索引 减少磁盘I/O和逻辑读次数的最佳方法之一就是使用[索引] 索引允许SQL Server在表中查找数据而不需要扫描整个表. 1.1.索引的好处: ...

  3. Gradle sourceCompatibility has no effect to subprojects(转)

    I have Java 6 and 7 installed on my machine. Gradle uses 1.7 (checked using gradle -v). But I need t ...

  4. 使用cocoapods install友盟时报错Error installing UMengAnalytics

    报错: [!] /usr/bin/unzip /Users/soindy/Documents/SmartThermo/ios/SmartThermo/Pods/UMengAnalytics/file. ...

  5. 拆分字段优化SQL

    拆分字段优化SQL 今天看到一条用函数处理连接的SQL,是群里某位网友的,SQL语句如下: SELECT SO_Order.fdate , SO_Order.fsn FROM so_order INN ...

  6. 浅析Java中的final关键字(转)

    谈到final关键字,想必很多人都不陌生,在使用匿名内部类的时候可能会经常用到final关键字.另外,Java中的String类就是一个final类,那么今天我们就来了解final这个关键字的用法.下 ...

  7. Writing your first Django app, part 1(转)

    Let’s learn by example. Throughout this tutorial, we’ll walk you through the creation of a basic pol ...

  8. DevExpress XtraReports 入门二 创建 data-aware(数据感知) 报表

    原文:DevExpress XtraReports 入门二 创建 data-aware(数据感知) 报表 本文只是为了帮助初次接触或是需要DevExpress XtraReports报表的人群使用的, ...

  9. 第1章 单例模式(Single Pattern)

    原文 第1章 单例模式(Single Pattern) 单例模式就是保证在整个应用程序的生命周期中,在任何时刻,被指定的类只有一个实例,并为客户程序提供一个获取该实例的全局访问点. 一.常用模式: 1 ...

  10. 网络资源(7) - JAX-WS视频

    2014_08_25 http://v.youku.com/v_show/id_XNjMzNDcyMTk2.html 基于JAX-WS编程模型的WebService 1. @WebService注释类 ...