使用 Subversion 修改文件名称的大小写的方法

       转载地址:删除、移动和改名


       在 Windows 中,使用 Subversion 修改文件名称的大小写需要小技巧,因为在改名期间,两个文件名称需要同时存在。因为 Windows 的文件系统是大小写不敏感的,所以使用平常的改名命令是不能工作的。

Fortunately there are (at least) two possible methods to rename a file without losing its log history. It is important to rename it within subversion. Just renaming in the explorer will corrupt your working copy!

解决方案 A)(推荐)

  1. 提交你工作副本中的改变到版本库

  2. 使用版本库的浏览器立即重命名该文件的大写(小写)为小写(大写)

  3. 更新你的工作副本

解决方案 B)

  1. 使用TortoiseSVN子菜单中的重命名命令将UPPERcase重命名为UPPERcase_ 格式

  2. 提交该更改

  3. 将UPPERcase_重命名为upperCASE格式

  4. 提交该更改


原文地址:https://www.cnblogs.com/lanzhi/p/6470860.html