c:\src>git branch
* master
qc3937
qc4042
c:\src>git branch --merged
* master
c:\src>git branch --no-merged
qc3937
qc4042
c:\src>git branch -d qc4042
error: The branch 'qc4042' is not an ancestor of your current HEAD.
If you are sure you want to delete it, run 'git branch -D qc4042'.
c:\src>git svn rebase
First, rewinding head to replay your work on top of it...
Fast-forwarded master to refs/remotes/svn/git-svn.
c:\src>git branch --merged
* master
qc4042
c:\src>git branch -d qc4042
Deleted branch qc4042 (was 6516af4).