I\'m using git-svn. How can I get a list of what I\'ve committed into git, but haven\'t yet committed to the SVN repository since the last git svn dcommit? That
git svn dcommit
To just see the list of commits, here's my magic:
git svn dcommit -n | sed 1d | cut -d" " -f3 | xargs -I{} git log --oneline --no-walk {}
output:
c2e1eff changed a thing a889dbf changed a second thing 18a4653 undid the second thing-- oops