I'am using git as scm of choice but have to use a svn-repo. I can create a svn-remote-branch like this:

git svn branch the_branch

But how can i delete the remote branch?

link|improve this question

feedback

2 Answers

up vote 33 down vote accepted

Currently, it is not possible to delete an SVN branch using git-svn. But it is easy to delete the branch using SVN, without even having to check it out. So simply type

svn rm $URL/branches/the_branch

Please note that deleting a Subversion branch does not cause it to be deleted from the git-svn repository. (This is intentional, because deleting a Subversion branch does not cause any information loss, whereas deleting a git branch causes its existence to be forgotten following the next git garbage collection.) So if you want the remote SVN branch to be deleted from your git repository, you have to do it manually:

git branch -D -r the_branch
rm -rf .git/svn/the_branch

To delete a git branch that corresponds to a Subversion tag, the commands are slightly different:

git branch -D -r tags/the_tag
rm -rf .git/svn/tags/the_tag
link|improve this answer
1  
As Stephen C speculates in another answer, the exact structure of the tree in .git/svn depends on how you set up your git-svn configuration. That said, for most common configurations, it shouldn't be hard to figure out the right subdirectories to delete. – ipmcc Mar 17 '11 at 18:51
1  
would not git gc or git svn gc detect and delete the correct files without the user aving to guess? – Ben Page Sep 28 '11 at 13:31
1  
Ben: the "rm -rf" commands delete git-svn metadata for the branch. This information is not cleaned up by "git gc" or "git svn gc". – mhagger Sep 30 '11 at 13:09
feedback

This worked well for me, thanks. Not sure if my environment is just different or this was changed in a more recent version of git, but the svn branch dirs were located in .git/svn/refs/remotes/ which was simple enough to find from the original instructions, changing the rm command to:

rm -rf .git/svn/refs/remotes/the_branch

Not sure about the tags since I don't use those much.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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