问题描述
有没有办法在由git-svn创建的git存储库上设置subversion属性?
在我的情况下,我想编辑 svn:external
, svn:ignore
和
svn:executable
但是,唯一的办法是使用subversion客户端进行签出。有没有一种方法来编辑svn属性,而无需两次检查存储库(一次为git,一次使用svn为属性)?
git-svn
不支持Subversion属性。当我遇到这个问题时,通常最终会有两次结帐。
这在 BUG下的文档:
Is there a way to set subversion properties on a git repository that was created by git-svn?
In my case, I want to edit the version of svn:external
, svn:ignore
andsvn:executable
.
However, the only way to do so seems to involve a check-out with the subversion client. Is there a way to edit svn properties without having to check out the repository twice (one time for git and one time with svn for the properties)?
git-svn
does not support Subversion properties. When I run into this problem, I usually end up having two checkouts.
This is mentioned in the git-svn
documentation under BUGS:
这篇关于如何使用git-svn设置Subversion属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!