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

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

Powered by Google App Engine
This is Rietveld 408576698