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
and
svn: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:Note: git 2.3.0 (February 2015) supports proset with
git svn
.See commit 83c9433 by Alfred Perlstein (
splbio
):So, as seen in
t/t9148-git-svn-propset.sh
, this now works:It's possible, just clone your SVN repository with SmartGit. It translates svn:executable, svn:externals and svn:ignore to executable, .gitsvnextmodules and .gitignore. So you can modify them and push back that will result in corresponding properties modification.
If you have an access to your SVN server you may install SubGit into it. It translates svn:executable and svn:ignore on the server side providing a Git interface to your SVN repository.
Started working on a patch to support
git svn propset
here: git svn propset supportYou can also used svnmucc, in case you don't want to have a whole svn checkout just to set props (my remote repo is really big).
Here's my command for adding a line to svn:ignore, replace URL, DIR, and VALUE.