diff options
author | Andres Gomez <[email protected]> | 2019-01-11 16:42:25 +0200 |
---|---|---|
committer | Andres Gomez <[email protected]> | 2019-01-14 17:36:56 +0200 |
commit | 716ed41a36037459ed5bfe0775484ac2cbd90707 (patch) | |
tree | af7c1e5dad1d6e986b95f8962cb5e572dd36de94 /bin/get-pick-list.sh | |
parent | 1a20b5679871b032f06007bde0fe422a3e761626 (diff) |
bin/get-pick-list.sh: fix the oneline printing
"--summary" will also print extended header information such as
creations, renames and mode changes.
Let's just use "--no-patch", which suppresses the diff output.
v2: Use "--no-patch" instead of the "-s" abbreviation (Eric).
Fixes: 559c32d2412 ("bin/get-pick-list.sh: simplify git oneline printing")
Cc: Juan A. Suarez <[email protected]>
Cc: Eric Engestrom <[email protected]>
Cc: Dylan Baker <[email protected]>
Cc: Emil Velikov <[email protected]>
Signed-off-by: Andres Gomez <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Juan A. Suarez <[email protected]>
Diffstat (limited to 'bin/get-pick-list.sh')
-rwxr-xr-x | bin/get-pick-list.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh index 79b7a295ea6..e7a2d0dce40 100755 --- a/bin/get-pick-list.sh +++ b/bin/get-pick-list.sh @@ -143,7 +143,7 @@ do esac printf "[ %8s ] " "$tag" - git --no-pager show --summary --oneline $sha + git --no-pager show --no-patch --oneline $sha done rm -f already_picked |