I'm using git-svn; I typically create a topic branch, make commits to it, then checkout master, git svn rebase, git merge --squash topic_branch, git commit -m "summary comment", then git svn dcommit.
That works fine, but git doesn't seem to know I merged the branch changes into master. I tried this without svn involved:
# Make a repository, add a couple files
$ mkdir gittest
$ cd gittest
$ git init
$ touch foo bar
$ git add .
$ git commit -m "initial version"
# Make a branch, change a file, commit.
$ git checkout -b a_branch
$ vi foo # make a change
$ git commit -am "a change"
# Merge changes into master
$ git checkout master
$ git merge --squash a_branch
$ git commit -m "merged a_branch"
and gitk --all shows this, which would indicate that it's not a git-svn problem:

In my main (git-svn) project, I see some changes early on that do appear to have been merged, but I don't know what I'm doing differently now that I didn't do then. (This is git 1.6.0.4 on Ubuntu Jaunty, if that matters.)
