mesa: add usage examples to get-pick-list and shortlog scripts
authorAndreas Boll <andreas.boll.dev@gmail.com>
Thu, 18 Apr 2013 07:32:39 +0000 (09:32 +0200)
committerAndreas Boll <andreas.boll.dev@gmail.com>
Wed, 1 May 2013 19:42:02 +0000 (21:42 +0200)
NOTE: This is a candidate for the stable branches.

bin/get-pick-list.sh
bin/shortlog_mesa.sh

index d3ac511c14464137ba29ca0e942847be8b115ef6..d2b76e7e633769b0e6170c80d31853b5d53a8ac7 100755 (executable)
@@ -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 |\
index b20c52fdd45ee05619e5d1b7419bca32038ca44d..2ba0815de7462947adbd8cd5a5e64d5466ac569e 100755 (executable)
@@ -2,6 +2,12 @@
 
 # This script is used to generate the list of changes that
 # appears in the release notes files, with HTML formatting.
+#
+# Usage examples:
+#
+# $ bin/shortlog_mesa.sh mesa-9.0.2..mesa-9.0.3
+# $ bin/shortlog_mesa.sh mesa-9.0.2..mesa-9.0.3 > changes
+# $ bin/shortlog_mesa.sh mesa-9.0.2..mesa-9.0.3 | tee changes
 
 
 typeset -i in_log=0