diff options
author | Andreas Boll <andreas.boll.dev@gmail.com> | 2013-04-18 09:32:39 +0200 |
---|---|---|
committer | Andreas Boll <andreas.boll.dev@gmail.com> | 2013-05-01 21:42:02 +0200 |
commit | b8e41db053a7cceba81650b4a94fff65c06ef86e (patch) | |
tree | fa15f4ee2c76bb192f5374e499e56efc3a1ed121 /bin/get-pick-list.sh | |
parent | df012011323766ae8e849179f55cafa44c091bc5 (diff) |
mesa: add usage examples to get-pick-list and shortlog scripts
NOTE: This is a candidate for the stable branches.
Diffstat (limited to 'bin/get-pick-list.sh')
-rwxr-xr-x | bin/get-pick-list.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh index d3ac511c14..d2b76e7e63 100755 --- a/bin/get-pick-list.sh +++ b/bin/get-pick-list.sh @@ -1,6 +1,12 @@ #!/bin/sh # Script for generating a list of candidates for cherry-picking to a stable branch +# +# Usage examples: +# +# $ bin/get-pick-list.sh +# $ bin/get-pick-list.sh > picklist +# $ bin/get-pick-list.sh | tee picklist # Grep for commits with "cherry picked from commit" in the commit message. git log --reverse --grep="cherry picked from commit" origin/master..HEAD |\ |