最近的文章列表

Windows2003下配置TortoiseSVN自动备份、发布网站

服务端:

操作系统:windows2003
SVN:VisualSVN Server 2.0.7
 
客户端:
TortoiseSVN 1.6.2
2014/11/6 Comments:
解决svn检出的时候报 Unable to connect to a repository at URL错误

背景:
1. SVN服务器:VisualSVN-Server-2.5.5;
2. 
SVN客户端:TortoiseSVN-1.7.6.22632-x64-svn-1.7.4.msi; 
在SVN服务器上,新建一个数据仓库aaa,用户ABC拥有读写权限。

现象:

2014/8/4 Comments:
为什么svn没有对号(对勾)等符号的问题解决

各大搜索查询了很久,也纠结了很久。调整svn建立好了服务端。安装客户端也检出成功了。但是就是没有对号符号。都想骂人了。在网上找了很长时间。最后在一个很不起眼的地方找到了答案。是因为

右键菜单,设置,里面有“图标覆盖”这个选项,把你的文件夹加入进去,然后注销windows用户重新登陆

终于解决了。我的神呀

2014/8/4 Comments:
svn报Previous operation has not finished; run 'cleanup' if it was interrupted错误 svn update failed

当我在svn项目里更新(update)和cleanup时都报错,很多人说下边的解决方案是:

选择你的项目,右键,小组(Team),刷新或清理(Refresh or Clean)即可。

或者 1.文件夹下方便  直接右键  tortiseSVN--》cleanup

感觉我的跟网上这哥们说的不一样,然后我在项目里面右键,第一步 清理,第二部刷新状态就可以了。

2014/7/8 Comments:
在PHP运行SVN命令显示某用户的文件更新记录的代码
代码如下:

<?php
$user=trim($_GET['user']);
$d=$_GET['date'];
if(!$d){
 $d=date('Ymd',time()-86400*14);
}
if(empty($user)){
 echo "例如:svn_log.php?user=wang&date=20130118";
 exit;
}

$cmd='/usr/bin/s

2014/1/9 Comments:
eclipse 同步 svn 时提醒'is not under version control' - J2EE

eclipse 同步 svn 时提示'is not under version control'
eclipse 同步svn 时提示abc.xml is not under version control ,但是本地已经没有这个文件了,怎样解决呢。

------解决方案--------------------
是 svn 版本不一致 锁造成的 ,还原一下 就OK了
------解决方案--------------------
同步一下,然后把那个目录覆盖掉

2014/1/7 Comments:
SVN:This client is too old to work with working copy '.'; please get a newer Subversion client

项目中使用的是1.4.7,作为eclipse的插件装的;后来又在机子上装了个TortoiseSVN 1.6.5。遇到的问题: 

引用

This client is too old to work with working copy 'D:\Camnpr\MyEclipseWorkspace\projectName\WebRoot\WEB-INF\lib'; please get a newer Subversion client. 
2014/1/6 Comments: