メモの日々


2013年01月16日(水) [長年日記]

[dev][howto] git-svnで空ディレクトリを削除

gitリポジトリ上でディレクトリを削除しても、git svn dcommit した先のsubversionリポジトリではディレクトリが削除されなかった。

% git svn dcommit --rmdir

と--rmdirオプションを付ければ削除されるみたい。git-svn(1) Manual Pageから引用。

--rmdir

Only used with the dcommit, set-tree and commit-diff commands.

Remove directories from the SVN tree if there are no files left behind. SVN can version empty directories, and they are not removed by default if there are no files left in them. git cannot version empty directories. Enabling this flag will make the commit to SVN act like git.

config key: svn.rmdir