summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsupercherry6
1 files changed, 5 insertions, 1 deletions
diff --git a/supercherry b/supercherry
index 68eac96..fad2460 100755
--- a/supercherry
+++ b/supercherry
@@ -1,6 +1,10 @@
#!/bin/bash
-base="master"
+# Similar to git-cherry, except that it shows unmerged commits
+# from all branches (including remotes).
+
+
+base="${1:-master}"
RED="\e[1;31m"
GREEN="\e[0;32m"