This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
#!/bin/bash |
| 2 |
set -e |
| 3 |
|
| 4 |
revision=`echo $1 | sed -n -e "s,r\?\([0-9]\+\),\1,p"` |
| 5 |
sha1=`git svn find-rev r$revision` |
| 6 |
git cherry-pick $sha1 |