SVN名称冲突?
有人认为给多个文件命名只是大小写不同是个好主意。
例如:
/fonts/arial.swf
/fonts/Arial.swf
/fonts/hevetica.swf
/fonts/Hevetica.swf
这对于Linux来说没有问题。但是对于 Windows 和 OS X,存储库不会同步。
有谁知道如何解决这个问题,因为目前我不知道如何成功签出存储库?
Someone thought it would be a great idea to give multiple files a name only differing by case.
For example:
/fonts/arial.swf
/fonts/Arial.swf
/fonts/hevetica.swf
/fonts/Hevetica.swf
This is no problem for Linux. However for Windows and OS X the repository won't synchronize.
Does anyone know to get around this, as currently I can't figure out how to successfully checkout the repository?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你必须修复回购协议。一些想法...
1) 从存储库获取具有“相同”名称的文件列表,例如:
然后
svn remove
或svn rename 文件并修复存储库。
2) 尝试
svn checkout --force
或svn export --force
,然后交叉手指。I guess you have to fix the repo. Some ideas...
1) Get list of files with "same" names from repo, with something like:
And then either
svn remove
orsvn rename
the files and fix the repo.2) try
svn checkout --force
orsvn export --force
, and cross fingers.