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

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

Powered by Google App Engine
This is Rietveld 408576698