electron/script
Samuel Attard 40b676fee8 chore: skip the .bin from folder hashing due to npm not cleaning up symlinks (#14888)
- fix the ia32 specs not running on CI
 - handle rejected promises in the "spec-runner" script
2018-10-01 16:00:04 +02:00
..
lib chore: get target arch from TARGET_ARCH env var 2018-09-29 14:13:17 +10:00
release-notes chore: update to standard 12 2018-09-14 14:57:01 +10:00
apply-patches chore: fix python lint warnings (#14638) 2018-09-16 12:24:07 -05:00
browsertests.yml ci: run unittests and browsertests separately (#14826) 2018-09-27 11:29:27 -04:00
bump-version.py chore: ensure the bump-version script modified the version.h file correctly 2018-09-28 13:58:48 +10:00
check-relative-doc-links.py chore: fix relative links in docs and enforce we dont break them again (#14832) 2018-09-28 13:16:38 +10:00
chrome_version.h.in
ci-release-build.js Add publish jobs for CircleCI releases 2018-09-28 11:17:11 +10:00
dbus_mock.py refactor: use one script to launch all linters (#14622) 2018-09-17 16:09:02 -05:00
dump-symbols.py Pass along verbose mode 2018-09-28 15:37:11 -04:00
find-release.js chore: update to standard 12 2018-09-14 14:57:01 +10:00
get-last-major-for-master.js chore: allow nightlies from release branches (#14157) 2018-08-17 10:42:45 -07:00
get-patch build: move libcc patches to electron repo (#14104) 2018-09-13 22:02:16 -07:00
get-version.py Add testing for arm, arm64 and ia32 linux builds 2017-12-20 11:54:52 -05:00
install-sysroot.py Update sysroot to Debian Stretch 2018-02-23 10:21:24 +09:00
lint.js chore: ignore spec/node_modules from linting (#14717) 2018-09-20 15:41:01 +10:00
merge-electron-checksums.py Do not put the upload logic in make_zip 2016-08-01 21:16:16 +09:00
native-tests.py ci: run unittests and browsertests separately (#14826) 2018-09-27 11:29:27 -04:00
patch.py chore: copy script/patch.py from the libcc repo (#14627) 2018-09-14 15:12:05 -07:00
prepare-release.js chore: dont pass --stable through to bump-version.py (#14661) 2018-09-18 23:32:49 +10:00
publish-to-npm.js chore: update to standard 12 2018-09-14 14:57:01 +10:00
pump.py chore: fix python lint warnings (#14638) 2018-09-16 12:24:07 -05:00
README.md build: move libcc patches to electron repo (#14104) 2018-09-13 22:02:16 -07:00
release-artifact-cleanup.js chore: fix await in cleanup script (#14670) 2018-09-19 09:38:35 -07:00
release.js chore: dont tag libcc when it does not exist in GN build 2018-09-28 15:58:54 +10:00
run-clang-format.py fix: change subprocess.Popen calls to work on Linux too (#14689) 2018-09-20 16:57:21 +10:00
spec-runner.js chore: skip the .bin from folder hashing due to npm not cleaning up symlinks (#14888) 2018-10-01 16:00:04 +02:00
start.js refactor: replace var with const / let (#14866) 2018-09-29 09:17:00 +10:00
sysroots.json Update sysroot images to fix linking error 2018-02-23 10:21:24 +09:00
test.py chore: stop using electron.gyp for branding and version (#14559) 2018-09-27 14:53:08 -04:00
tls.py chore: fix relative links in docs and enforce we dont break them again (#14832) 2018-09-28 13:16:38 +10:00
unittests.yml ci: run unittests and browsertests separately (#14826) 2018-09-27 11:29:27 -04:00
update-external-binaries.py build: use electron-frameworks sccache (#14171) 2018-08-21 15:40:06 -04:00
upload-index-json.py chore: fix out_dir usage in upload-index-json.py 2018-09-28 11:16:38 +10:00
upload-node-checksums.py chore: fix out_dir usage in upload-node-checksums.py 2018-09-28 11:16:38 +10:00
upload-node-headers.py chore: fix out_dir usage in upload-symbols.py 2018-09-28 11:24:50 +10:00
upload-symbols.py chore: fix upload.py for symbol.zip upload 2018-09-29 12:00:33 +12:00
upload-to-github.js chore: update to standard 12 2018-09-14 14:57:01 +10:00
upload.py chore: run create-typescript-definitions for darwin releases 2018-09-29 16:39:22 +10:00
verify-ffmpeg.py chore: stop using electron.gyp for branding and version (#14559) 2018-09-27 14:53:08 -04:00
zip-symbols.py chore: add python env to zip-symbols script 2018-09-29 02:10:42 +12:00

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