Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: git-lkgr

Issue 11962003: Update git-lkgr with --create and --name options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: merge TOT Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 force_branch=no 7 branch_name=""
8 checkout_branch=no
9 create_branch=no
8 quiet=no 10 quiet=no
9 svn_lkgr= 11 svn_lkgr=
10 12
11 while [ $# -gt 0 ]; do 13 while [ $# -gt 0 ]; do
12 case "$1" in 14 case "$1" in
13 --force-branch) 15 --checkout|--force-branch)
14 force_branch=yes 16 checkout_branch=yes
17 create_branch=yes
18 ;;
19 --create)
20 create_branch=yes
21 ;;
22 -n|--name)
23 branch_name=$2
24 create_branch=yes
25 shift
15 ;; 26 ;;
16 -q|--quiet) 27 -q|--quiet)
17 quiet=yes 28 quiet=yes
18 ;; 29 ;;
19 -r|--revision) 30 -r|--revision)
20 svn_lkgr="$2" 31 svn_lkgr="$2"
21 shift 32 shift
22 ;; 33 ;;
23 *) 34 *)
24 echo "Unknown option: $1" 35 echo "Unknown option: $1"
36 echo "Usage:"
37 echo " --checkout Create a branch and check it out."
38 echo " --create Create a branch."
39 echo " -n, --name <name> Specify the name of branch to create or reset."
40 echo " This will force the branch using 'git branch -f '."
41 echo " -q, --quiet Quiet."
42 echo " -r, --revision <r> Svn revision number use instead of server provi ded lkgr."
43 exit 1
25 ;; 44 ;;
26 esac 45 esac
27 shift 46 shift
28 done 47 done
29 48
30 if [ -z "$svn_lkgr" ]; then 49 if [ -z "$svn_lkgr" ]; then
31 svn_lkgr=`curl -s http://chromium-status.appspot.com/lkgr` 50 svn_lkgr=`curl -s http://chromium-status.appspot.com/lkgr`
32 if [ $? != 0 -o -z "$svn_lkgr" ]; then 51 if [ $? != 0 -o -z "$svn_lkgr" ]; then
33 echo 'Could not get svn lkgr from chromium-status.appspot.com/lkgr' 52 echo 'Could not get svn lkgr from chromium-status.appspot.com/lkgr'
34 exit 1 53 exit 1
(...skipping 14 matching lines...) Expand all
49 68
50 http://code.google.com/p/chromium/wiki/UsingNewGit#Initial_checkout 69 http://code.google.com/p/chromium/wiki/UsingNewGit#Initial_checkout
51 EOF 70 EOF
52 exit 1 71 exit 1
53 fi 72 fi
54 73
55 git_lkgr=`git svn find-rev r${svn_lkgr}` 74 git_lkgr=`git svn find-rev r${svn_lkgr}`
56 if [ $? != 0 -o -z "$git_lkgr" ]; then 75 if [ $? != 0 -o -z "$git_lkgr" ]; then
57 cat <<EOF 1>&2 76 cat <<EOF 1>&2
58 Could not map svn revision ${svn_lkgr} to a git commit. 77 Could not map svn revision ${svn_lkgr} to a git commit.
59 You may need to `git fetch` and try again. 78 You may need to 'git fetch' and try again.
60 EOF 79 EOF
61 exit 1 80 exit 1
62 fi 81 fi
63 82
64 set -o pipefail 83 set -o pipefail
65 closest_commit=`git rev-list --ancestry-path \ 84 closest_commit=`git rev-list --ancestry-path \
66 --grep='SVN changes up to revision [0-9]*' \ 85 --grep='SVN changes up to revision [0-9]*' \
67 ${git_lkgr}..refs/remotes/origin/master | tail -1` 86 ${git_lkgr}..refs/remotes/origin/master | tail -1`
68 if [ $? != 0 -o -z "$closest_commit" ]; then 87 if [ $? != 0 -o -z "$closest_commit" ]; then
69 closest_commit= 88 closest_commit=
70 closest_svn_commit= 89 closest_svn_commit=
71 else 90 else
72 closest_svn_commit=`git rev-list -n 1 ${closest_commit}^1` 91 closest_svn_commit=`git rev-list -n 1 ${closest_commit}^1`
73 if [ $? != 0 -o -z "$closest_svn_commit" ]; then 92 if [ $? != 0 -o -z "$closest_svn_commit" ]; then
74 cat <<EOF 1>&2 93 cat <<EOF 1>&2
75 I am thoroughly confused. Please file a bug report at http://new.crbug.com. 94 I am thoroughly confused. Please file a bug report at http://new.crbug.com.
76 EOF 95 EOF
77 exit 1 96 exit 1
78 fi 97 fi
79 fi 98 fi
80 99
81 # Pick a name for the new branch. Use `git rev-parse` to make sure the branch 100 # Determine lkgr_branch:
82 # doesn't already exist; if it does, iterate an integer suffix to uniquify it. 101 if [ "${branch_name}" != "" ]; then
83 lkgr_branch="git_lkgr_r${svn_lkgr}" 102 # Use the provided name for the branch.
84 digit=1 103 lkgr_branch="${branch_name}"
85 git rev-parse --verify -q "${lkgr_branch}" >/dev/null 104
86 while [ $? -eq 0 ]; do 105 # If the branch already exists, force the update to it.
87 lkgr_branch="git_lkgr_r${svn_lkgr}_${digit}" 106 git rev-parse --verify -q "${branch_name}" >/dev/null
88 digit=`expr $digit + 1` 107 if [ $? -eq 0 ]; then
108 old_branch_value=`git rev-parse "${branch_name}"`
109 echo "Will update branch ${lkgr_branch}, it previously was at ${old_branch_v alue}."
110 force_branch="--force"
111 fi
112 else
113 # Pick a name for the new branch. Use `git rev-parse` to make sure the branch
114 # doesn't already exist; if it does, iterate an integer suffix to uniquify it.
115 lkgr_branch="lkgr_r${svn_lkgr}"
116 digit=1
89 git rev-parse --verify -q "${lkgr_branch}" >/dev/null 117 git rev-parse --verify -q "${lkgr_branch}" >/dev/null
90 done 118 while [ $? -eq 0 ]; do
119 lkgr_branch="lkgr_r${svn_lkgr}_${digit}"
120 digit=`expr $digit + 1`
121 git rev-parse --verify -q "${lkgr_branch}" >/dev/null
122 done
123 fi
91 124
92 if [ "${closest_svn_commit}" = "${git_lkgr}" ]; then 125 if [ "${closest_svn_commit}" = "${git_lkgr}" ]; then
93 echo "${closest_commit}" 126 echo "${closest_commit}"
94 if [ "$force_branch" = "yes" ]; then 127 if [ "$create_branch" = "yes" ]; then
95 git checkout -b "${lkgr_branch}" "${closest_commit}" 128 echo "Creating branch ${lkgr_branch}"
129 git branch ${force_branch} "${lkgr_branch}" "${closest_commit}" || exit 1
130 fi
131 if [ "$checkout_branch" = "yes" ]; then
132 git checkout "${lkgr_branch}"
96 fi 133 fi
97 exit 0 134 exit 0
98 elif [ "${quiet}" = "yes" ]; then 135 elif [ "${quiet}" = "yes" ]; then
99 exit 1 136 exit 1
100 elif [ "${force_branch}" = "no" ]; then 137 elif [ "${checkout_branch}" = "no" ]; then
101 echo "There is no master commit which corresponds exactly to svn revision ${sv n_lkgr}." 138 echo "There is no master commit which corresponds exactly to svn revision ${sv n_lkgr}."
102 if [ -n "$closest_commit" ]; then 139 if [ -n "$closest_commit" ]; then
103 echo "The closest commit is ${closest_commit}." 140 echo "The closest commit is ${closest_commit}."
104 fi 141 fi
105 read -n 1 -p "Would you like to create a new branch based on r${svn_lkgr}? (y/ N) " 142 echo "Call 'git lkgr --checkout' to create a branch with a commit to match ${s vn_lkgr}."
106 echo 143 exit 0
107 if [ "x$REPLY" != "xy" -a "x$REPLY" != "xY" ]; then
108 exit 0
109 fi
110 fi 144 fi
111 145
112 current_head=`git branch | grep '^\*' | cut -c3-` 146 current_head=`git branch | grep '^\*' | cut -c3-`
113 if [ "${current_head}" = "(no branch)" ]; then 147 if [ "${current_head}" = "(no branch)" ]; then
114 current_head=`git rev-parse HEAD` 148 current_head=`git rev-parse HEAD`
115 fi 149 fi
116 150
117 git checkout --detach "${git_lkgr}" && 151 git checkout --detach "${git_lkgr}" &&
118 python tools/deps2git/deps2git.py -d DEPS -o .DEPS.git -w .. && 152 python tools/deps2git/deps2git.py -d DEPS -o .DEPS.git -w .. &&
119 git add .DEPS.git && 153 git add .DEPS.git &&
120 python tools/deps2git/deps2submodules.py .DEPS.git && 154 python tools/deps2git/deps2submodules.py .DEPS.git &&
121 git commit -m "SVN changes up to revision $svn_lkgr" && 155 git commit -m "SVN changes up to revision $svn_lkgr" &&
122 git checkout -b "${lkgr_branch}" HEAD 156 git branch ${force_branch} "${lkgr_branch}" HEAD
123 157
124 if [ $? != 0 ]; then 158 if [ $? != 0 ]; then
125 cat <<EOF 159 cat <<EOF
126 160
127 -------------------------------------------------------------------------------- 161 --------------------------------------------------------------------------------
128 Something went wrong! Restoring your previous state by checking out 162 Something went wrong! Restoring your previous state by checking out
129 $current_head 163 $current_head
130 164
131 Please file a bug report at http://new.crbug.com. 165 Please file a bug report at http://new.crbug.com.
132 -------------------------------------------------------------------------------- 166 --------------------------------------------------------------------------------
133 167
134 EOF 168 EOF
135 git checkout --force $current_head 169 git checkout --force $current_head
136 exit 1 170 exit 1
137 fi 171 fi
138 172
173 git checkout "${lkgr_branch}"
174
139 cat <<EOF 175 cat <<EOF
140 176
141 -------------------------------------------------------------------------------- 177 --------------------------------------------------------------------------------
142 The new branch "$lkgr_branch" was branched from this commit: 178 The new branch "$lkgr_branch" was branched from this commit:
143 179
144 $git_lkgr 180 $git_lkgr
145 181
146 ... which maps to the svn commit r${svn_lkgr}. The new branch 182 ... which maps to the svn commit r${svn_lkgr}. The new branch
147 has one additional commit, to bring .DEPS.git, .gitmodules, and the 183 has one additional commit, to bring .DEPS.git, .gitmodules, and the
148 invisible git submodule files up to date with DEPS. 184 invisible git submodule files up to date with DEPS.
149 185
150 To create a working branch, do this: 186 To create a working branch, do this:
151 187
152 \$ git branch --track my_new_branch $lkgr_branch 188 \$ git branch --track my_new_branch $lkgr_branch
153 189
154 'git-cl upload' will do the right thing, i.e., it will cherry-pick all 190 'git-cl upload' will do the right thing, i.e., it will cherry-pick all
155 your changes from my_new_branch, but *not* the .DEPS.git+.gitmodules+submodules 191 your changes from my_new_branch, but *not* the .DEPS.git+.gitmodules+submodules
156 commit on $lkgr_branch. 192 commit on $lkgr_branch.
157 -------------------------------------------------------------------------------- 193 --------------------------------------------------------------------------------
158 194
159 EOF 195 EOF
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698