svn  st查看更新的时候发现存在conflicts,提示很多 local delete, incoming delete upon update ,

 $:svn st
? C IMIRROR.T3A.000.000.T28.img
> local delete, incoming delete upon update
? C IMIRROR.T3A.000.000.T33.img
> local delete, incoming delete upon update
? C IMIRROR.T3A.000.000.T34.img
> local delete, incoming delete upon update
? C chips/sun8iw11p1/configs/default/0sys_partition_linux.fex
> local delete, incoming delete upon update
? C chips/sun8iw11p1/configs/default/1sys_partition_linux.fex
> local delete, incoming delete upon update
? C chips/sun8iw11p1/configs/default/2sys_partition_linux.fex
> local delete, incoming delete upon update
? chips/sun8iw11p1/configs/t3-p3/1280_400_sys_config.fex
? chips/sun8iw11p1/configs/t3-p3/1920_480_sys_config.fex
D out/0sys_partition.fex
? out/1280_400_sys_config.fex
? out/1920_480_sys_config.fex
D out/1sys_partition.fex
D out/2sys_partition.fex
M out/Vboot-resource.fex
M out/Vboot.fex
M out/Vrootfs.fex
M out/boot-resource.fex
M out/boot_package.fex
M out/config.fex
M out/sunxi.fex
M out/sys_config.bin
M out/sys_config.fex
M out/sys_config_fix.fex
M out/u-boot.fex
? C sun8iw11p1_linux_t3-p3_uart0.img
> local delete, incoming delete upon update
Summary of conflicts:
Tree conflicts:

解决办法:

1、先 revert 冲突文件

 $:svn revert   IMIRROR.T3A.000.000.T28.img  IMIRROR.T3A.000.000.T33.img   IMIRROR.T3A.000.000.T34.img    sun8iw11p1_linux_t3-p3_uart0.img  chips/sun8iw11p1/configs/default/0sys_partition_linux.fex   chips/sun8iw11p1/configs/default/1sys_partition_linux.fex    chips/sun8iw11p1/configs/default/2sys_partition_linux.fex
Reverted 'IMIRROR.T3A.000.000.T28.img'
Reverted 'IMIRROR.T3A.000.000.T33.img'
Reverted 'IMIRROR.T3A.000.000.T34.img'
Reverted 'sun8iw11p1_linux_t3-p3_uart0.img'
Reverted 'chips/sun8iw11p1/configs/default/0sys_partition_linux.fex'
Reverted 'chips/sun8iw11p1/configs/default/1sys_partition_linux.fex'
Reverted 'chips/sun8iw11p1/configs/default/2sys_partition_linux.fex'

2、删除掉冲突文件。

 $:rm  IMIRROR.T3A.000.000.T28.img   IMIRROR.T3A.000.000.T33.img    IMIRROR.T3A.000.000.T34.img   chips/sun8iw11p1/configs/default/0sys_partition_linux.fex  chips/sun8iw11p1/configs/default/1sys_partition_linux.fex  chips/sun8iw11p1/configs/default/2sys_partition_linux.fex   sun8iw11p1_linux_t3-p3_uart0.img 

3、重新checkin

$:svn ci -m "message log" file1 file2

svn conflicts: local delete, incoming delete upon update的更多相关文章

  1. svn local delete, incoming delete upon update 解决办法

    经常有人会说,树冲突是很难解决的一类冲突,其实一旦了解了其原理,要解决也不难.先回顾下对于树冲突的定义.     树冲突:当一名开发人员移动.重命名.删除一个文件或文件夹,而另一名开发人员也对它们进行 ...

  2. 命令模式坚决svn树冲突(local unversioned, incoming add upon update)

    当工作目录修改删除过时更新使用svn更新就容易发生树冲突“Tree Confilict”.会出现类似提示. local unversioned, incoming add upon update 如果 ...

  3. local unversioned, incoming add upon update问题

    当update的时候遇到如下问题 svn status D C ~/workspace/test/a.c > local unversioned, incoming add upon updat ...

  4. svn: local unversioned, incoming file add upon update

    svn 文件冲突: D C 文件名 > local unversioned, incoming file add upon update svn revert 文件名 提示: 已恢复“文件名” ...

  5. svn local obstruction, incoming add upon merge

    http://little418.com/2009/05/svn-local-obstruction-incoming-add-upon-merge.html If you've found this ...

  6. 关键字(8):数据库记录的增删查改insert,delete,select,update

    insert:一般只要参数个数和类型没问题,不会插入异常 INSERT INTO t_pos_dynamic_map(autoid, lt_termno, lt_merchno) VALUES(SEQ ...

  7. 【转】 C++中delete和delete[]的区别

    一直对C++中的delete和delete[]的区别不甚了解,今天遇到了,上网查了一下,得出了结论.做个备份,以免丢失. C++告诉我们在回收用 new 分配的单个对象的内存空间的时候用 delete ...

  8. C++:delete和delete[]释放内存的区别

      C++告诉我们在回收用 new 分配的单个对象的内存空间的时候用 delete,回收用 new[] 分配的一组对象的内存空间的时候用 delete[].  关于 new[] 和 delete[], ...

  9. C++中delete和delete[]的区别

    C++告诉我们在回收用 new 分配的单个对象的内存空间的时候用 delete,回收用 new[] 分配的一组对象的内存空间的时候用 delete[]. 关于 new[] 和 delete[],其中又 ...

随机推荐

  1. 串口通信中ReadFile和WriteFile的超时详解!

    源:串口通信中ReadFile和WriteFile的超时详解! 在用ReadFile和WriteFile读写串行口时,需要考虑超时问题.如果在指定的时间内没有读出或写入指定数量的字符,那么ReadFi ...

  2. RunLoop基础

    序言 RunLoop一直是比较高级而又比较神秘的技术,一直以来都没有深入去阅读过苹果给出的官方文档.本篇文章就讲讲苹果官方文档中所介绍的RunLoop,再加上其开源性,让我们一起深入去研究其特性及与线 ...

  3. FZU 1058 粗心的物理学家

    这题有毒.要用long double定义,以及cout控制格式输出. #include<cstdio> #include<cstring> #include<cmath& ...

  4. C++中string类的使用方法

    如果所比较的两个string 相等,则返回0: 操作string 大于参数string,返回 正数:操作string 小于参数string,返回负数. (1) 比较操作string 与 _Str 或C ...

  5. 【转】每一个程序员需要了解的10个Linux命令

    作为一个程序员,在软件开发职业生涯中或多或少会用到Linux系统,并且可能会使用Linux命令来检索需要的信息.本文将为各位开发者分享10个有用的Linux命令,希望对你会有所帮助. 以下就是今天我们 ...

  6. ASIHTTPRequest异步请求 分类: ios技术 2015-03-01 09:33 48人阅读 评论(0) 收藏

    我们运行程序,如果网速很慢,查询的时候会一直黑屏,直到请求结束画面才出现,这样用户体验很不好.因此同步请求一般只是在某个子线 程中使用,而不在主线程中使用.异步请求的用户体验要比同步请求好,因此一般情 ...

  7. java.lang.ClassNotFoundException: org.apache.commons.pool2.impl.GenericObjectPoolConfig

    问题描述: Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with n ...

  8. ModelDriven动作(转)

    所谓ModelDriven ,意思是直接把实体类当成页面数据的收集对象.比如,有实体类User 如下: package cn.com.leadfar.struts2.actions; public c ...

  9. SVN本地服务器的搭建

    本来一直在研究Git,Github,TortoiseGit,最近一个项目要用到SVN,所有开始着手SVN SVN一般和Tortoise配合使用,windows下一般使用VisualSVN版本 一.安装 ...

  10. php实现断点下载

    HTTP断点续传原理 Http头 Range.Content-Range() HTTP头中一般断点下载时才用到Range和Content-Range实体头, Range用户请求头中,指定第一个字节的位 ...