显示标签为“svn”的博文。显示所有博文
显示标签为“svn”的博文。显示所有博文

2013年10月23日星期三

[摘] svn 如何查看当前用户

svn 如何查看当前用户

1. 简单粗暴的
cat ~/.subversion/auth/svn.*/*

2. 稍文艺点的
cat ~/.subversion/auth/svn.*/* | grep username -A2  | grep -v -- -- | xargs -n4 | awk '{print $4}'

2013年10月18日星期五

[转] local add, incoming add upon merge 解决方法

FROM: http://blog.sina.com.cn/s/blog_67a5e4720100yg36.html

在svn命令行merge之后文件经常会出现local add, incoming add upon merge问题,导致无法提交,可以通过以下命令解决冲突
Summarizing to resolve the tree conflict committing your working dir with svn client 1.6.x you can use:
svn resolve --accept working -R .
where . is the directory in conflict.

2013年4月6日星期六

[svn] local add, incoming add upon merge



在 svn 命令行 merge 之后文件经常会出现 local add, incoming add upon merge 问题,导致无法提交,可以通过以下命令解决冲突 
Summarizing to resolve the tree conflict committing your working dir with svn client 1.6.x you can use: 

svn resolve --accept working -R .  

where . is the directory in conflict.