Lines Matching refs:start
33 $start = $ARGV[0];
35 if($start eq "-h") {
39 elsif($start eq "") {
40 $start = `git tag --sort=taggerdate | grep "^curl-" | tail -1`;
41 chomp $start;
44 $commits = `git log --oneline $start.. | wc -l`;
45 $committers = `git shortlog -s $start.. | wc -l`;
46 $bcommitters = `git shortlog -s $start | wc -l`;
57 $bcontribs = `git show $start:docs/THANKS | grep -c '^[^ ]'`;
75 $bsetopts = setopts("git show $start:include/curl/curl.h|");
80 $boptions=`git show $start:src/tool_listhelp.c 2>/dev/null | grep -c '{"....--'`;
88 $deletes=`git diff-tree --diff-filter=A -r --summary origin/$branch $start 2>/dev/null | wc -l`;
89 $creates=`git diff-tree --diff-filter=D -r --summary origin/$branch $start 2>/dev/null| wc -l`;
92 …ref --format="%(refname:short) | %(taggerdate:unix)" refs/tags/* | grep ^$start | cut "-d|" -f2`; …
93 …ach-ref --format="%(refname:short) | %(creatordate)" refs/tags/* | grep ^$start | cut '-d|' -f2`; …
101 $bpublic=`git grep ^CURL_EXTERN $start -- include/curl | wc -l`;
105 $diffstat=`git diff --stat $start.. | tail -1`;
142 print "== Since $start $taggednice ==\n";