# HG changeset patch # User sheepluva # Date 1452970238 -3600 # Node ID b3ee79e8e3b9b9531e4b9e888585002a64ff1b21 # Parent 6873bd4d120c47b87377e6b519902b679af9230e find hg revision even if github author name is not the same as hg author (kodabb vs koda) diff -r 6873bd4d120c -r b3ee79e8e3b9 tools/rgit2hg.sh --- a/tools/rgit2hg.sh Sat Jan 16 19:29:28 2016 +0100 +++ b/tools/rgit2hg.sh Sat Jan 16 19:50:38 2016 +0100 @@ -45,6 +45,11 @@ echo result=$(hg log -R "$HW_HG" -u "$author" -d "$date" -v -l1) if [ -z "$result" ]; then + echo 'No match with this author'\''s name. It might differ, so let'\''s try using date only ...' + echo + result=$(hg log -R "$HW_HG" -d "$date" -v) + fi + if [ -z "$result" ]; then echo 'No match :(' shift continue