summaryrefslogtreecommitdiffstats
path: root/scripts/create-pull-request
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/create-pull-request')
-rwxr-xr-xscripts/create-pull-request10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/create-pull-request b/scripts/create-pull-request
index 784b48c2dd..658b9c2b56 100755
--- a/scripts/create-pull-request
+++ b/scripts/create-pull-request
@@ -10,14 +10,14 @@ usage() {
10CMD=$(basename $0) 10CMD=$(basename $0)
11cat <<EOM 11cat <<EOM
12Usage: $CMD [-h] [-o output_dir] [-m msg_body_file] [-s subject] [-r relative_to] [-i commit_id] -b contrib_branch 12Usage: $CMD [-h] [-o output_dir] [-m msg_body_file] [-s subject] [-r relative_to] [-i commit_id] -b contrib_branch
13 -b contrib_branch Branch-name in the $PULL_URL
13 -h Display this help message 14 -h Display this help message
14 -o output_dir Specify the output directory for the messages (default: pull-PID) 15 -i commit_id Ending commit (default: HEAD)
15 -m msg_body_file The file containing a blurb to be inserted into the summary email 16 -m msg_body_file The file containing a blurb to be inserted into the summary email
17 -o output_dir Specify the output directory for the messages (default: pull-PID)
18 -p prefix Use [prefix N/M] instead of [PATCH N/M] as the subject prefix
16 -r relative_to Starting commit (default: master) 19 -r relative_to Starting commit (default: master)
17 -i commit_id Ending commit (default: HEAD)
18 -b contrib_branch Branch-name in the $PULL_URL
19 -s subject The subject to be inserted into the summary email 20 -s subject The subject to be inserted into the summary email
20 -p prefix Use [prefix N/M] instead of [PATCH N/M] as the subject prefix
21 21
22 Examples: 22 Examples:
23 $CMD -b nitin/basic 23 $CMD -b nitin/basic
@@ -28,7 +28,7 @@ EOM
28} 28}
29 29
30# Parse and validate arguments 30# Parse and validate arguments
31while getopts "b:hi:m:o:r:s:p:" OPT; do 31while getopts "b:hi:m:o:p:r:s:" OPT; do
32 case $OPT in 32 case $OPT in
33 b) 33 b)
34 CONTRIB_BRANCH="$OPTARG" 34 CONTRIB_BRANCH="$OPTARG"