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

Side by Side Diff: recipe_modules/git/example.expected/basic_ref.json

Issue 2369073002: git recipe_module: git new-branch. (Closed)
Patch Set: Review. Created 4 years, 2 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
7 "--path", 7 "--path",
8 "[SLAVE_BUILD]/src", 8 "[SLAVE_BUILD]/src",
9 "--url", 9 "--url",
10 "https://chromium.googlesource.com/chromium/src.git" 10 "https://chromium.googlesource.com/chromium/src.git"
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 "cmd": [ 148 "cmd": [
149 "git", 149 "git",
150 "status" 150 "status"
151 ], 151 ],
152 "cwd": "[SLAVE_BUILD]/src", 152 "cwd": "[SLAVE_BUILD]/src",
153 "name": "git status cannot_fail_build" 153 "name": "git status cannot_fail_build"
154 }, 154 },
155 { 155 {
156 "cmd": [ 156 "cmd": [
157 "git", 157 "git",
158 "new-branch",
159 "refactor"
160 ],
161 "cwd": "[SLAVE_BUILD]/src",
162 "env": {
163 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
164 },
165 "name": "git new-branch refactor"
166 },
167 {
168 "cmd": [
169 "git",
170 "new-branch",
171 "feature",
172 "--upstream",
173 "refactor"
174 ],
175 "cwd": "[SLAVE_BUILD]/src",
176 "env": {
177 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
178 },
179 "name": "git new-branch feature"
180 },
181 {
182 "cmd": [
183 "git",
158 "rebase", 184 "rebase",
159 "origin/master" 185 "origin/master"
160 ], 186 ],
161 "cwd": "[SLAVE_BUILD]/src", 187 "cwd": "[SLAVE_BUILD]/src",
162 "name": "my repo rebase" 188 "name": "my repo rebase"
163 }, 189 },
164 { 190 {
165 "cmd": [ 191 "cmd": [
166 "git", 192 "git",
167 "bundle", 193 "bundle",
168 "create", 194 "create",
169 "[SLAVE_BUILD]/all.bundle", 195 "[SLAVE_BUILD]/all.bundle",
170 "--all" 196 "--all"
171 ], 197 ],
172 "cwd": "[SLAVE_BUILD]/src", 198 "cwd": "[SLAVE_BUILD]/src",
173 "name": "git bundle" 199 "name": "git bundle"
174 }, 200 },
175 { 201 {
176 "name": "$result", 202 "name": "$result",
177 "recipe_result": null, 203 "recipe_result": null,
178 "status_code": 0 204 "status_code": 0
179 } 205 }
180 ] 206 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698