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

Side by Side Diff: recipe_modules/git/example.expected/git-cache-checkout.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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 "cmd": [ 195 "cmd": [
196 "git", 196 "git",
197 "status" 197 "status"
198 ], 198 ],
199 "cwd": "[SLAVE_BUILD]/src", 199 "cwd": "[SLAVE_BUILD]/src",
200 "name": "git status cannot_fail_build" 200 "name": "git status cannot_fail_build"
201 }, 201 },
202 { 202 {
203 "cmd": [ 203 "cmd": [
204 "git", 204 "git",
205 "new-branch",
206 "refactor"
207 ],
208 "cwd": "[SLAVE_BUILD]/src",
209 "env": {
210 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
211 },
212 "name": "git new-branch refactor"
213 },
214 {
215 "cmd": [
216 "git",
217 "new-branch",
218 "feature",
219 "--upstream",
220 "refactor"
221 ],
222 "cwd": "[SLAVE_BUILD]/src",
223 "env": {
224 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
225 },
226 "name": "git new-branch feature"
227 },
228 {
229 "cmd": [
230 "git",
205 "rebase", 231 "rebase",
206 "origin/master" 232 "origin/master"
207 ], 233 ],
208 "cwd": "[SLAVE_BUILD]/src", 234 "cwd": "[SLAVE_BUILD]/src",
209 "name": "my repo rebase" 235 "name": "my repo rebase"
210 }, 236 },
211 { 237 {
212 "cmd": [ 238 "cmd": [
213 "git", 239 "git",
214 "bundle", 240 "bundle",
215 "create", 241 "create",
216 "[SLAVE_BUILD]/all.bundle", 242 "[SLAVE_BUILD]/all.bundle",
217 "--all" 243 "--all"
218 ], 244 ],
219 "cwd": "[SLAVE_BUILD]/src", 245 "cwd": "[SLAVE_BUILD]/src",
220 "name": "git bundle" 246 "name": "git bundle"
221 }, 247 },
222 { 248 {
223 "name": "$result", 249 "name": "$result",
224 "recipe_result": null, 250 "recipe_result": null,
225 "status_code": 0 251 "status_code": 0
226 } 252 }
227 ] 253 ]
OLDNEW
« no previous file with comments | « recipe_modules/git/example.expected/curl_trace_file.json ('k') | recipe_modules/git/example.expected/platform_win.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698