Skip to content

Commit

Permalink
bin/get-pick-list.sh: fix the oneline printing
Browse files Browse the repository at this point in the history
"--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: 559c32d ("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]>
  • Loading branch information
tanty committed Jan 14, 2019
1 parent 1a20b56 commit 716ed41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/get-pick-list.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 716ed41

Please sign in to comment.