SVN chechout 错误: xxx is not valid as filename in directory

用svn checkout的时候碰到“xxx is not valid as filename in directory”错误,导致checkout中断,后面的其他文件也都无法checkout。

百度搜索:“svn is not valid as filename in directory”,完全没有有用的信息!!!

翻墙google搜索,马上很多解决方案,比如:http://stackoverflow.com/questions/18452218/how-can-i-get-rid-of-the-error-folder-name-not-valid-as-filename-in-directory

意思就是Linux系统允许文件或文件夹的名字包含空格,而windows是不允许的。所以,解决的方法是用乌龟(SVN Repository Browser)去svn服务器中把该文件或文件夹中的空格去掉。

照做之后,问题立马消失!(天哪!!!为什么要把Google墙了啊???)

版权声明:本文为原创文章,转载请注明转自Clement-Xu的csdn博客。

时间: 2025-01-13 13:01:29

SVN chechout 错误: xxx is not valid as filename in directory的相关文章

SVN Working Copy xxx locked ,并且进行cleanup也还是不行

cd 到指定目录,然后执行如下命令 del lock /q/s -------------------------------------------------------------------------------------------- 产生这种情况大多是因为上次svn命令执行失败且被锁定了. 如果cleanup没有效果的话只好手动删除锁定文件. cd 到svn项目目录下,然后执行如下命令 del lock /q/s 就把锁删掉了. -------------------------

linux服务器部署svn常见错误处理→转载

转载地址→http://blog.seweal.com/post/2013-02-04/svn-errors [开放svn端口] iptables -I INPUT -p tcp --dport 3690 -j ACCEPT #开放3690端口 /etc/rc.d/init.d/iptables save #保存配置,非常重要,保存才能生效 /etc/init.d/iptables status # 查看是否已经成功: 如果提示 iptables: command not found 则是没有安

Versions 出现 SVN Working Copy xxx locked

使用versions 出现 SVN Working Copy xxx locked 解决方案: 首先,先定位到工程目录下,然后使用如下命令查看是否有锁 find . | grep ".svn/lock" 然后再用: find . | grep ".svn/lock" | xargs rm 再进入versions项目正常了

[python]一个低级错误/xxx instance has no attribute 'xxx'/'module' object is not callable

今天在写代码的时候出现了以下两个错误: TypeError: 'module' object is not callable AttributeError: excelChange instance has no attribute 'xlBook' 上网一查,发现第一个错误是由于python中有两种不同的引用方式 import xxx 和 from xxx import *,前者在代码中引用时需要加上模块名和具体的方法或属性,具体方法如下: import catchForm self.xls

svn提交错误:Commit failed (details follow): Can't create directory

重装系统后,启动svn,挂载原来的repository目录,访问正常,但提交时老发生以下错误: Commit failed (details follow): Can't create directory ***.txn: No such file or directory google一把,看到碰到这样问题的倒也不少,解决办法不多.下面这篇文章里得到个提醒:svn的repository目录转移到新机器时不要直接使用,要用svnadmin dump/load来拷贝使用.于是dump & load

git 错误 fatal: Not a valid object name: 'master'.

转载:http://blog.csdn.net/jackie_tsai/article/details/51587994 问题场景:新建git项目或刚为已存在项目创建了git仓库,想用git branch dev创建dev分支或用git checkout -b dev创建并切换到dev分支时报错. 原因:刚创建的git仓库默认的master分支要在第一次commit之后才会真正建立,否则就像你声明了个对象但没初始化一样 解决办法:先git add .添加所有项目文件到本地仓库缓存,再git co

Qt编译错误GL/gl.h: No such file or directory

最近把系统换成ubuntu14.04的了,在安装Qt后,我运行了里面的一个示例,发现编译有错: 其实我以前就遇到过这个问题,我当时给我的朋友写了一封邮件,他告诉我说是因为系统中没有安装OpenGL库导致的,所以我们要安装OpenGL库及其工具: 这个是他当时给我回的邮件,我发现我现在的系统中没有最后一个软件,可能是因为新系统换了比较新的软件源的关系吧.我的做法是运行这个命令 [email protected]:~$ sudo apt-get install freeglut3-dev 之后就可以

svn SSL 错误:Key usage violation in certificate has been detected

CentOS/RHEL yum 安装的 subversion 是 1.6.11 版本,连VisualSVN服务器时会有"Key usage violation"的错误 将subversion升级到最新版可解决该问题 1.添加源 vim /etc/yum.repos.d/wandisco-svn.repo [WandiscoSVN] name=Wandisco SVN Repo baseurl=http://opensource.wandisco.com/centos/$releasev

IntelliJ IDEA svn 提交错误

环境说明: 系统:Mac OS X 10.9 以及 10.10 系统设置:LANG=zh_CN.UTF-8 svn 客户端:1.8.10 IntelliJ IDEA 13 毫无疑问,IntelliJ IDEA 是最好的 Java IDE,没有之一. 在 Mac OS X 上使用 MacPorts 安装了 1.8.10 版本的 svn 客户端,并且将 IntelliJ IDEA 的 Subversion 设置为“Use command line client” /opt/local/bin/svn