Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)?

share|improve this question

3 Answers

up vote 14 down vote accepted

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:

We ignore all SVN properties except svn:executable. Any unhandled properties are logged to $GIT_DIR/svn/<refname>/unhandled.log

share|improve this answer
2  
This is not the answer I hoped for - but I guess I have to accept it. – Black Aug 15 '09 at 10:17

Started working on a patch to support git svn propset here: git svn propset support

share|improve this answer
Thank You, David. I look forward to seeing this functionality in the next release version. – Black Sep 12 '09 at 8:26
this still doesn't work, correct? – Casey May 11 '11 at 8:05
Yes; unfortunately my patch would have taken lots of reworking to get accepted, and I've moved away from using git svn in its standard form so am not intending to keep developing this... – David Fraser May 11 '11 at 9:12

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.