2011-04-05 61 views
0

我无法使用Subversion命令行客户端将属性更改添加到更改列表上的目录。 Subversion不断跳过我想添加的目录(这是我的项目的主干)。请参阅下面的控制台输出,从工作副本的根目录。我想添加的更改位于.目录中。如何将目录上的属性更改添加到Subversion

$ svn st 
M  . 
M  some/file/do-not-commit.html 

--- Changelist 'index': 
M  some/other/file.html 

这里的DIFF:

$ svn diff 
Property changes on: . 
___________________________________________________________________ 
Modified: svn:mergeinfo 
    Merged /extern/trunk/site:r135-162 

<snipped rest of diff> 

当我尝试在.添加属性更改index变更列表会发生什么:

$ svn cl index . 
Skipped '.' 

someome能帮我打颠覆成提交?提前致谢。为了完整起见,这里的确切颠覆版本(这是从Debian的挤压一):

$ svn --version 
svn, version 1.6.12 (r955767) 
    compiled Mar 1 2011, 22:17:06 

Copyright (C) 2000-2009 CollabNet. 
Subversion is open source software, see http://subversion.tigris.org/ 
This product includes software developed by CollabNet (http://www.Collab.Net/). 

The following repository access (RA) modules are available: 

* ra_neon : Module for accessing a repository via WebDAV protocol using Neon. 
    - handles 'http' scheme 
    - handles 'https' scheme 
* ra_svn : Module for accessing a repository using the svn network protocol. 
    - with Cyrus SASL authentication 
    - handles 'svn' scheme 
* ra_local : Module for accessing a repository on local disk. 
    - handles 'file' scheme 
* ra_serf : Module for accessing a repository via WebDAV protocol using serf. 
    - handles 'http' scheme 
    - handles 'https' scheme 

回答

1

Subversion中修改列表不支持属性更改。只有文件或目录。

+0

我很害怕这个。我通过做一个非常冗长乏味的非递归提交来解决我的问题,所以我会避免意外提交一个我不想提交的文件。 – 2011-04-05 08:57:10