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

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

Powered by Google App Engine
This is Rietveld 408576698