X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=devtools%2Fcheck-git-log.sh;h=9988bf863d3c10404d2029dd3f8756d4ae3d8798;hb=57d4198a0b50f93d921b4b3d30cbdea7f4131db5;hp=08fea5d9b7b324904191f6af9265b1c33b93c997;hpb=a8354c99a912e1c2513e113ae07c9e91237f7951;p=dpdk.git diff --git a/devtools/check-git-log.sh b/devtools/check-git-log.sh index 08fea5d9b7..9988bf863d 100755 --- a/devtools/check-git-log.sh +++ b/devtools/check-git-log.sh @@ -16,7 +16,7 @@ print_usage () { by latest git commits limited with -n option, or commits in the git range specified with -r option. e.g. To check only the last commit, ‘-n1’ or ‘-r@~..’ is used. - If no range provided, default is origin/master..HEAD. + If no range provided, default is origin/main..HEAD. END_OF_HELP } @@ -27,7 +27,7 @@ selfdir=$(dirname $(readlink -f $0)) # and allows for specifying the patches to check by passing -nX or -r range. # The old format allows for specifying patches by passing -X or range # as the first argument. -range=${1:-origin/master..} +range=${1:-origin/main..} if [ "$range" = '--help' ] ; then print_usage