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

Side by Side Diff: recipe_modules/git/example.expected/count-objects_with_bad_output.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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 "cmd": [ 153 "cmd": [
154 "git", 154 "git",
155 "status" 155 "status"
156 ], 156 ],
157 "cwd": "[SLAVE_BUILD]/src", 157 "cwd": "[SLAVE_BUILD]/src",
158 "name": "git status cannot_fail_build" 158 "name": "git status cannot_fail_build"
159 }, 159 },
160 { 160 {
161 "cmd": [ 161 "cmd": [
162 "git", 162 "git",
163 "new-branch",
164 "refactor"
165 ],
166 "cwd": "[SLAVE_BUILD]/src",
167 "env": {
168 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
169 },
170 "name": "git new-branch refactor"
171 },
172 {
173 "cmd": [
174 "git",
175 "new-branch",
176 "feature",
177 "--upstream",
178 "refactor"
179 ],
180 "cwd": "[SLAVE_BUILD]/src",
181 "env": {
182 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
183 },
184 "name": "git new-branch feature"
185 },
186 {
187 "cmd": [
188 "git",
163 "rebase", 189 "rebase",
164 "origin/master" 190 "origin/master"
165 ], 191 ],
166 "cwd": "[SLAVE_BUILD]/src", 192 "cwd": "[SLAVE_BUILD]/src",
167 "name": "my repo rebase" 193 "name": "my repo rebase"
168 }, 194 },
169 { 195 {
170 "cmd": [ 196 "cmd": [
171 "git", 197 "git",
172 "bundle", 198 "bundle",
173 "create", 199 "create",
174 "[SLAVE_BUILD]/all.bundle", 200 "[SLAVE_BUILD]/all.bundle",
175 "--all" 201 "--all"
176 ], 202 ],
177 "cwd": "[SLAVE_BUILD]/src", 203 "cwd": "[SLAVE_BUILD]/src",
178 "name": "git bundle" 204 "name": "git bundle"
179 }, 205 },
180 { 206 {
181 "name": "$result", 207 "name": "$result",
182 "recipe_result": null, 208 "recipe_result": null,
183 "status_code": 0 209 "status_code": 0
184 } 210 }
185 ] 211 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698