* build: make external binaries download action more flexible * chore: reformat DEPS Make it look more like Chromium //DEPS: - use name-pattern-condition-action order for hooks - add trailing commas - remove some line breaks Also remove redundant entry from "recursedeps". |
||
|---|---|---|
| .. | ||
| lib | ||
| release-notes | ||
| apply-patches | ||
| bump-version.py | ||
| check-relative-doc-links.py | ||
| chrome_version.h.in | ||
| ci-release-build.js | ||
| dbus_mock.py | ||
| download-circleci-artifacts.js | ||
| dump-symbols.py | ||
| find-release.js | ||
| get-last-major-for-master.js | ||
| get-patch | ||
| get-version.py | ||
| lint.js | ||
| merge-electron-checksums.py | ||
| native-tests.py | ||
| patch.py | ||
| prepare-release.js | ||
| publish-to-npm.js | ||
| pump.py | ||
| README.md | ||
| release-artifact-cleanup.js | ||
| release.js | ||
| run-clang-format.py | ||
| spec-runner.js | ||
| start.js | ||
| sysroots.json | ||
| test.py | ||
| tls.py | ||
| update-external-binaries.py | ||
| upload-index-json.py | ||
| upload-node-checksums.py | ||
| upload-node-headers.py | ||
| upload-symbols.py | ||
| upload-to-github.js | ||
| upload.py | ||
| verify-ffmpeg.py | ||
| zip-symbols.py | ||
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