diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-10-24 11:28:09 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-10-24 11:28:09 +0200 |
commit | b028ae3aa8aebbe5c4929704fd17341f22644bec (patch) | |
tree | 7bbd3f8dee76ed336657f7c12e8fbc95dbb719d7 | |
parent | 868c84ad1d46bbe8abd768daa3b78c125b94f1b9 (diff) | |
download | bin-b028ae3aa8aebbe5c4929704fd17341f22644bec.tar.gz bin-b028ae3aa8aebbe5c4929704fd17341f22644bec.tar.xz |
supercherry: Add doc and allow to change base branch
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | supercherry | 6 |
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" |