├── .git-blame-ignore-revs ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE ├── README.rst ├── docs ├── conf.py ├── contents.rst ├── index.rst ├── release-notes.rst ├── requirements.txt └── usage.rst ├── git_pw ├── __init__.py ├── api.py ├── bundle.py ├── config.py ├── logger.py ├── patch.py ├── series.py ├── shell.py └── utils.py ├── man ├── git-pw-bundle-add.1 ├── git-pw-bundle-apply.1 ├── git-pw-bundle-create.1 ├── git-pw-bundle-delete.1 ├── git-pw-bundle-download.1 ├── git-pw-bundle-list.1 ├── git-pw-bundle-remove.1 ├── git-pw-bundle-show.1 ├── git-pw-bundle-update.1 ├── git-pw-bundle.1 ├── git-pw-patch-apply.1 ├── git-pw-patch-download.1 ├── git-pw-patch-list.1 ├── git-pw-patch-show.1 ├── git-pw-patch-update.1 ├── git-pw-patch.1 ├── git-pw-series-apply.1 ├── git-pw-series-download.1 ├── git-pw-series-list.1 ├── git-pw-series-show.1 ├── git-pw-series.1 └── git-pw.1 ├── pyproject.toml ├── releasenotes ├── config.yaml └── notes │ ├── add-before-since-options-c67799ef2ad89c0c.yaml │ ├── add-yaml-format-support-5cd6b9028e6d2d8e.yaml │ ├── api-v1-1-5c804713ef435739.yaml │ ├── bundle-crud-47aadae6eb7a20ad.yaml │ ├── download-series-to-separate-patches-eae647315dd4d2e1.yaml │ ├── drop-pypy-support-f670deb05ef527fe.yaml │ ├── drop-python-35-36-support-add-python-310-7d364b9ba71bf5ba.yaml │ ├── drop-python34-support-5e01360fff605972.yaml │ ├── enforce-filtering-by-project-59ed29c4b7edc0a5.yaml │ ├── filter-item-list-by-user-id-4f4e7d6dc402093b.yaml │ ├── filter-multiple-matches-197ff839f6b578da.yaml │ ├── handle-error-codes-d72c575fb2d9b452.yaml │ ├── initial-release-0aad09064615d023.yaml │ ├── issue-24-60a9fa796f666f35.yaml │ ├── issue-29-884269fdf35f64b2.yaml │ ├── issue-40-add82959d7442cfa.yaml │ ├── issue-43-c2c166e1fa23fe76.yaml │ ├── issue-44-66b78577e9534f16.yaml │ ├── issue-46-50933643cd5c8db0.yaml │ ├── issue-47-a9ac87642050d289.yaml │ ├── issue-48-694495f722119fed.yaml │ ├── issue-49-865c4f1657b97fce.yaml │ ├── issue-55-bfcf05e02ad305b1.yaml │ ├── passthrough-git-am-arguments-23cd0b292304d648.yaml │ ├── patch-apply-applyPatchDeps-option-9a8fed887af313d5.yaml │ ├── patch-states-b88240569f8474f1.yaml │ ├── python-2-deprecation-c87e311384eab29b.yaml │ ├── python-311-support-de330cb1ff9da396.yaml │ ├── python-313-054fa37d696d4a87.yaml │ ├── random-fixes-3da473a63c253f2d.yaml │ ├── remove-python-3-2-3-3-support-8987031bed2c0333.yaml │ ├── require-server-version-93ac0818c293b85e.yaml │ ├── save-patches-before-applying-c5e786156d47d752.yaml │ ├── save-patches-to-file-c667ab7dd0b73ead.yaml │ ├── update-multiple-patches-ed515cd53964c203.yaml │ ├── use-bundle-names-b1b3ee5c2858c96b.yaml │ ├── use-git-pager-settings-ec6555d8311a8bec.yaml │ └── warn-on-multiple-filters-a4e01fdb5cf6e459.yaml ├── requirements.txt ├── rpm ├── README.rst └── git-pw.spec ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tests ├── __init__.py ├── test_api.py ├── test_bundle.py ├── test_patch.py ├── test_series.py └── test_utils.py └── tox.ini /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | defc7e6ea85485917af55d1af89328ef3c4a81e0 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/README.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/release-notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/docs/release-notes.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /git_pw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/git_pw/__init__.py -------------------------------------------------------------------------------- /git_pw/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/git_pw/api.py -------------------------------------------------------------------------------- /git_pw/bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/git_pw/bundle.py -------------------------------------------------------------------------------- /git_pw/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/git_pw/config.py -------------------------------------------------------------------------------- /git_pw/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/git_pw/logger.py -------------------------------------------------------------------------------- /git_pw/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/git_pw/patch.py -------------------------------------------------------------------------------- /git_pw/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/git_pw/series.py -------------------------------------------------------------------------------- /git_pw/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/git_pw/shell.py -------------------------------------------------------------------------------- /git_pw/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/git_pw/utils.py -------------------------------------------------------------------------------- /man/git-pw-bundle-add.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-bundle-add.1 -------------------------------------------------------------------------------- /man/git-pw-bundle-apply.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-bundle-apply.1 -------------------------------------------------------------------------------- /man/git-pw-bundle-create.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-bundle-create.1 -------------------------------------------------------------------------------- /man/git-pw-bundle-delete.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-bundle-delete.1 -------------------------------------------------------------------------------- /man/git-pw-bundle-download.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-bundle-download.1 -------------------------------------------------------------------------------- /man/git-pw-bundle-list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-bundle-list.1 -------------------------------------------------------------------------------- /man/git-pw-bundle-remove.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-bundle-remove.1 -------------------------------------------------------------------------------- /man/git-pw-bundle-show.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-bundle-show.1 -------------------------------------------------------------------------------- /man/git-pw-bundle-update.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-bundle-update.1 -------------------------------------------------------------------------------- /man/git-pw-bundle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-bundle.1 -------------------------------------------------------------------------------- /man/git-pw-patch-apply.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-patch-apply.1 -------------------------------------------------------------------------------- /man/git-pw-patch-download.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-patch-download.1 -------------------------------------------------------------------------------- /man/git-pw-patch-list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-patch-list.1 -------------------------------------------------------------------------------- /man/git-pw-patch-show.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-patch-show.1 -------------------------------------------------------------------------------- /man/git-pw-patch-update.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-patch-update.1 -------------------------------------------------------------------------------- /man/git-pw-patch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-patch.1 -------------------------------------------------------------------------------- /man/git-pw-series-apply.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-series-apply.1 -------------------------------------------------------------------------------- /man/git-pw-series-download.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-series-download.1 -------------------------------------------------------------------------------- /man/git-pw-series-list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-series-list.1 -------------------------------------------------------------------------------- /man/git-pw-series-show.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-series-show.1 -------------------------------------------------------------------------------- /man/git-pw-series.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw-series.1 -------------------------------------------------------------------------------- /man/git-pw.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/man/git-pw.1 -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/pyproject.toml -------------------------------------------------------------------------------- /releasenotes/config.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | default_branch: main 3 | -------------------------------------------------------------------------------- /releasenotes/notes/add-before-since-options-c67799ef2ad89c0c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/add-before-since-options-c67799ef2ad89c0c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-yaml-format-support-5cd6b9028e6d2d8e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/add-yaml-format-support-5cd6b9028e6d2d8e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/api-v1-1-5c804713ef435739.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Patchwork API v1.1 is now supported. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/bundle-crud-47aadae6eb7a20ad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/bundle-crud-47aadae6eb7a20ad.yaml -------------------------------------------------------------------------------- /releasenotes/notes/download-series-to-separate-patches-eae647315dd4d2e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/download-series-to-separate-patches-eae647315dd4d2e1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-pypy-support-f670deb05ef527fe.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | *git-pw* no longer officially supports PyPy. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/drop-python-35-36-support-add-python-310-7d364b9ba71bf5ba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/drop-python-35-36-support-add-python-310-7d364b9ba71bf5ba.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-python34-support-5e01360fff605972.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Support for Python 3.4 has been dropped. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/enforce-filtering-by-project-59ed29c4b7edc0a5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/enforce-filtering-by-project-59ed29c4b7edc0a5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/filter-item-list-by-user-id-4f4e7d6dc402093b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/filter-item-list-by-user-id-4f4e7d6dc402093b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/filter-multiple-matches-197ff839f6b578da.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/filter-multiple-matches-197ff839f6b578da.yaml -------------------------------------------------------------------------------- /releasenotes/notes/handle-error-codes-d72c575fb2d9b452.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/handle-error-codes-d72c575fb2d9b452.yaml -------------------------------------------------------------------------------- /releasenotes/notes/initial-release-0aad09064615d023.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/initial-release-0aad09064615d023.yaml -------------------------------------------------------------------------------- /releasenotes/notes/issue-24-60a9fa796f666f35.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/issue-24-60a9fa796f666f35.yaml -------------------------------------------------------------------------------- /releasenotes/notes/issue-29-884269fdf35f64b2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/issue-29-884269fdf35f64b2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/issue-40-add82959d7442cfa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/issue-40-add82959d7442cfa.yaml -------------------------------------------------------------------------------- /releasenotes/notes/issue-43-c2c166e1fa23fe76.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/issue-43-c2c166e1fa23fe76.yaml -------------------------------------------------------------------------------- /releasenotes/notes/issue-44-66b78577e9534f16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/issue-44-66b78577e9534f16.yaml -------------------------------------------------------------------------------- /releasenotes/notes/issue-46-50933643cd5c8db0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/issue-46-50933643cd5c8db0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/issue-47-a9ac87642050d289.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/issue-47-a9ac87642050d289.yaml -------------------------------------------------------------------------------- /releasenotes/notes/issue-48-694495f722119fed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/issue-48-694495f722119fed.yaml -------------------------------------------------------------------------------- /releasenotes/notes/issue-49-865c4f1657b97fce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/issue-49-865c4f1657b97fce.yaml -------------------------------------------------------------------------------- /releasenotes/notes/issue-55-bfcf05e02ad305b1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/issue-55-bfcf05e02ad305b1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/passthrough-git-am-arguments-23cd0b292304d648.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/passthrough-git-am-arguments-23cd0b292304d648.yaml -------------------------------------------------------------------------------- /releasenotes/notes/patch-apply-applyPatchDeps-option-9a8fed887af313d5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/patch-apply-applyPatchDeps-option-9a8fed887af313d5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/patch-states-b88240569f8474f1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/patch-states-b88240569f8474f1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/python-2-deprecation-c87e311384eab29b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/python-2-deprecation-c87e311384eab29b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/python-311-support-de330cb1ff9da396.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/python-311-support-de330cb1ff9da396.yaml -------------------------------------------------------------------------------- /releasenotes/notes/python-313-054fa37d696d4a87.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/python-313-054fa37d696d4a87.yaml -------------------------------------------------------------------------------- /releasenotes/notes/random-fixes-3da473a63c253f2d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/random-fixes-3da473a63c253f2d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-python-3-2-3-3-support-8987031bed2c0333.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/remove-python-3-2-3-3-support-8987031bed2c0333.yaml -------------------------------------------------------------------------------- /releasenotes/notes/require-server-version-93ac0818c293b85e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/require-server-version-93ac0818c293b85e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/save-patches-before-applying-c5e786156d47d752.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/save-patches-before-applying-c5e786156d47d752.yaml -------------------------------------------------------------------------------- /releasenotes/notes/save-patches-to-file-c667ab7dd0b73ead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/save-patches-to-file-c667ab7dd0b73ead.yaml -------------------------------------------------------------------------------- /releasenotes/notes/update-multiple-patches-ed515cd53964c203.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/update-multiple-patches-ed515cd53964c203.yaml -------------------------------------------------------------------------------- /releasenotes/notes/use-bundle-names-b1b3ee5c2858c96b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/use-bundle-names-b1b3ee5c2858c96b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/use-git-pager-settings-ec6555d8311a8bec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/use-git-pager-settings-ec6555d8311a8bec.yaml -------------------------------------------------------------------------------- /releasenotes/notes/warn-on-multiple-filters-a4e01fdb5cf6e459.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/releasenotes/notes/warn-on-multiple-filters-a4e01fdb5cf6e459.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/requirements.txt -------------------------------------------------------------------------------- /rpm/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/rpm/README.rst -------------------------------------------------------------------------------- /rpm/git-pw.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/rpm/git-pw.spec -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/tests/test_bundle.py -------------------------------------------------------------------------------- /tests/test_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/tests/test_patch.py -------------------------------------------------------------------------------- /tests/test_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/tests/test_series.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getpatchwork/git-pw/HEAD/tox.ini --------------------------------------------------------------------------------