I know that you can search for an svn commit
after running git svn
using the git log
command.
Example searching for svn commit r88843:
git log --grep=git-svn-id:.*@88843
Then you can use the git commit hash to pass into git show
Can this be done in a one-liner?
Similar to (in Linux):
git show < git log --grep=git-svn-id:.*@88843 --pretty=format:%H