• Home
  • Raw
  • Download

Lines Matching +full:rev +full:- +full:list

8 #       notice, this list of conditions and the following disclaimer.
10 # copyright notice, this list of conditions and the following
32 BASE_URL="https://code.google.com/p/v8/source/list"
33 VERSION="include/v8-version.h"
49 Fetches V8 revision information from a git-svn checkout.
52 -h Show this message.
54 -i Print revision info for all branches matching the V8 version.
55 Example usage: $0 -i 3.19.10$
58 -v Print the V8 version tag for a trunk SVN revision.
59 Example usage: $0 -v 14981
62 -m Print all patches that were merged to the specified V8 branch.
63 Example usage: $0 -m 3.18
66 -p Print all patches merged to a specific V8 point-release.
67 Example usage: $0 -p 3.19.12.1
70 -u Print a link to all SVN revisions between two V8 revision tags.
71 Example usage: $0 -u 3.19.10:3.19.11
76 git for-each-ref --format="%(objectname) %(refname:short)" refs/remotes/svn
80 cut -d" " -f1
84 git log --format="%h %ci %ce %s" -1 $1
92 echo $1 | grep -o "r[0-9]\+"
96 git svn log -1 --oneline $1 | cut -d" " -f1
101 id=$(echo $tag | grep -o "[^/]*$")
102 rev=$(echo $tag | tag_revision)
103 svn=$(hash_to_svn $rev)
104 echo $rev $svn $id
109 git svn find-rev $2 svn/$1
113 cd $(git rev-parse --show-toplevel)
114 rev=$(git show $1:$VERSION \
117 | grep -o "[0-9]\+$" \
119 echo ${rev%?}
123 git cherry -v svn/trunk svn/$1 | while read merge; do
124 h=$(echo $merge | cut -d" " -f2)
126 merges=$(echo $merge | grep -o "r[0-9]\+")
127 rev=$(v8_rev $h)
128 echo $rev r$svn $merges
133 first=$(svn_rev trunk $(v8_hash $(echo $1 | cut -d":" -f1)))
134 last=$(svn_rev trunk $(v8_hash $(echo $1 | cut -d":" -f2)))
135 num=$[ $last - $first]
156 ?) echo "Illegal option: -$OPTARG"