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

Side by Side Diff: recipe_modules/git/example.expected/cat-file_test.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 "fetch", 193 "fetch",
(...skipping 25 matching lines...) Expand all
193 ], 219 ],
194 "cwd": "[SLAVE_BUILD]/src", 220 "cwd": "[SLAVE_BUILD]/src",
195 "name": "git bundle" 221 "name": "git bundle"
196 }, 222 },
197 { 223 {
198 "name": "$result", 224 "name": "$result",
199 "recipe_result": null, 225 "recipe_result": null,
200 "status_code": 0 226 "status_code": 0
201 } 227 }
202 ] 228 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698