3a2e1cf307
Update patches in preparation for the upgrade to Chromium 67 Included commits: 62ca2cf21c deps: cherry-pick 70c4340 from upstream V8 ab27e0e785 deps: cherry-pick acc336c from upstream V8 37a5c8c2ff deps: cherry-pick b20faff from upstream V8 4663d1c22e deps: backport aa6ce3e from upstream V8 5d7218965d deps: cherry-pick 5dd3395 from upstream V8 14bb905d18 deps: V8: cherry-pick a440efb27f from upstream 35d6661973 deps: cherry-pick 6989b3f6d7 from V8 upstream 4e788dc2f5 deps: backport 91ddb65d from upstream V8 |
||
---|---|---|
.. | ||
lib | ||
README.md | ||
apply-patches | ||
bootstrap | ||
build | ||
build-clang.py | ||
cibuild | ||
cibuild-libchromiumcontent-linux | ||
cibuild-libchromiumcontent-linux-arm | ||
cibuild-libchromiumcontent-linux-arm64 | ||
cibuild-libchromiumcontent-linux-ia32 | ||
cibuild-libchromiumcontent-linux-mips64el | ||
cibuild-libchromiumcontent-linux-x64 | ||
cibuild.ps1 | ||
create-dist | ||
disabled-tests.yaml | ||
docker-install-build-deps.sh | ||
download | ||
get-patch | ||
package-clang.py | ||
patch.py | ||
run-gn | ||
run_tests | ||
sccache | ||
update | ||
upload |
README.md
get-patch
Use it to save commits from upstream repositories as patch files.
Examples
- Write commit contents in the patch format to stdout.
$ ./script/get-patch --repo src --commit 8e8216e5
- Create a patch file with a default name if a specified directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --output-dir patches
- Create a patch file with a custom name in the current directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --filename my.patch
- Create a patch file with a custom name in a specified directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --output-dir patches --filename my.patch
- Create patch files with default names in a specified directory.
$ ./script/get-patch --repo src --output-dir patches --commit 8e8216e5 164c37e3
- Create patch files with custom names in a specified directory. Note that number of filenames must match the number of commits.
$ ./script/get-patch --repo src --output-dir patches --commit 8e8216e5 164c37e3 --filename first.patch second.patch