Hello Joerg,
You're absolutely right, as SVN 'trunk' corresponds to Git 'master', trunk
deletion corresponds to master deletion. This is true if you're using standard
trunk/branches/tags/shelves options:
trunk = trunk:refs/heads/master
branches = branches/*:refs/heads/*
shelves = shelves/*:refs/shelves/*
tags = tags/*:refs/tags/*
The only side effect of that is that when Git repository has no master, by
default "git clone" won't checkout any branch because usually it checks out
'master' branch. But this is easily solvable by running "git checkout
branchname" immediately after "git clone".
--
Dmitry Pavlenko,