libchromiumcontent/script
Nitish Sakhawalkar 2cd887adc3 chrome: Unship snapshot_blob.bin from Win/Mac/Linux
https://chromium-review.googlesource.com/812587
2018-06-11 11:07:28 +02:00
..
lib Use packaged chromium source for CI 2018-05-09 12:30:06 -04:00
reportbuild VSTS configuration 2018-04-12 20:35:34 -04:00
README.md Add README.md for the scripts 2018-05-25 17:16:16 +02:00
apply-patches Name an arg "target_arch" instead of "target-arch" for consistency 2018-04-12 13:22:14 +02:00
bootstrap Do not install PyYAML on bootstrap (#500) 2018-03-29 08:35:09 -05:00
build Merge pull request #535 from electron/disable-mksnapshot-build-all 2018-05-09 10:37:49 -04:00
build-clang.py Customized build clang scripts for arm64/armv7 2018-03-21 13:31:21 -04:00
cibuild Use packaged chromium source for CI 2018-05-09 12:30:06 -04:00
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 Update run_tests to generate xml reports for CI (#530) 2018-05-01 14:29:56 -05:00
create-dist chrome: Unship snapshot_blob.bin from Win/Mac/Linux 2018-06-11 11:07:28 +02:00
disabled-tests.yaml Update disabled tests (#527) 2018-04-22 09:28:37 -07:00
docker-install-build-deps.sh
download Use packaged chromium source for CI 2018-05-09 12:30:06 -04:00
get-patch Add options to save patch contents to a file to the "get-patch" script 2018-05-25 17:15:44 +02:00
package-clang.py Customized build clang scripts for arm64/armv7 2018-03-21 13:31:21 -04:00
patch.py
run-gn Log a build config name before generating build files for it 2018-06-11 11:07:28 +02:00
run_tests Update run_tests to generate xml reports for CI (#530) 2018-05-01 14:29:56 -05:00
sccache Use sccache to speed up builds 2018-04-25 10:18:23 -04:00
update Use packaged chromium source for CI 2018-05-09 12:30:06 -04:00
upload Use packaged chromium source for CI 2018-05-09 12:30:06 -04:00

README.md

get-patch

Use it to save commits from upstream repositories as patch files.

Examples

  1. Write commit contents in the patch format to stdout.
$ ./script/get-patch --repo src --commit 8e8216e5
  1. Create a patch file with a default name if a specified directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --output_dir patches
  1. Create a patch file with a custom name in the current directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --filename my.patch
  1. 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
  1. Create patch files with default names in a specified directory.
$ ./script/get-patch --repo src --output_dir patches --commit 8e8216e5 164c37e3
  1. 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