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

Side by Side Diff: recipe_modules/git/example.expected/count-objects_delta.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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 "cmd": [ 221 "cmd": [
222 "git", 222 "git",
223 "status" 223 "status"
224 ], 224 ],
225 "cwd": "[SLAVE_BUILD]/src", 225 "cwd": "[SLAVE_BUILD]/src",
226 "name": "git status cannot_fail_build" 226 "name": "git status cannot_fail_build"
227 }, 227 },
228 { 228 {
229 "cmd": [ 229 "cmd": [
230 "git", 230 "git",
231 "new-branch",
232 "refactor"
233 ],
234 "cwd": "[SLAVE_BUILD]/src",
235 "env": {
236 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
237 },
238 "name": "git new-branch refactor"
239 },
240 {
241 "cmd": [
242 "git",
243 "new-branch",
244 "feature",
245 "--upstream",
246 "refactor"
247 ],
248 "cwd": "[SLAVE_BUILD]/src",
249 "env": {
250 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
251 },
252 "name": "git new-branch feature"
253 },
254 {
255 "cmd": [
256 "git",
231 "rebase", 257 "rebase",
232 "origin/master" 258 "origin/master"
233 ], 259 ],
234 "cwd": "[SLAVE_BUILD]/src", 260 "cwd": "[SLAVE_BUILD]/src",
235 "name": "my repo rebase" 261 "name": "my repo rebase"
236 }, 262 },
237 { 263 {
238 "cmd": [ 264 "cmd": [
239 "git", 265 "git",
240 "bundle", 266 "bundle",
241 "create", 267 "create",
242 "[SLAVE_BUILD]/all.bundle", 268 "[SLAVE_BUILD]/all.bundle",
243 "--all" 269 "--all"
244 ], 270 ],
245 "cwd": "[SLAVE_BUILD]/src", 271 "cwd": "[SLAVE_BUILD]/src",
246 "name": "git bundle" 272 "name": "git bundle"
247 }, 273 },
248 { 274 {
249 "name": "$result", 275 "name": "$result",
250 "recipe_result": null, 276 "recipe_result": null,
251 "status_code": 0 277 "status_code": 0
252 } 278 }
253 ] 279 ]
OLDNEW
« no previous file with comments | « recipe_modules/git/example.expected/cat-file_test.json ('k') | recipe_modules/git/example.expected/count-objects_failed.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698