mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 19:38:56 +08:00
1c0807f9b7
Signed-off-by: egg12138 <xoltraman@outlook.com> Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com> Co-authored-by: Ivan Baluta <ivanbaluta.dev@gmail.com>
900 B
900 B
b4 am
Retrieve and prepare patches from a public-inbox archive for applying with
git am. More information: https://b4.docs.kernel.org/en/latest/maintainer/am-shazam.html.
- Retrieve patches from a thread and prepare them for
git am:
b4 am {{message_id}}
- Retrieve patches and add your own
Signed-off-bytrailer as well as aLink:trailer to every commit:
b4 am {{[-sl|--add-my-sob --add-link]}} {{message_id}}
- Retrieve patches and prepare with 3-way merge support for conflict resolution:
b4 am {{[-3|--prep-3way]}} {{message_id}}
- Cherry-pick a subset of patches (e.g., patches 1-3 and 5) from a series:
b4 am {{[-P|--cherry-pick]}} {{1-3,5}} {{message_id}}
- Retrieve patches and run local checks on each patch:
b4 am --check {{message_id}}
- Save the output mailbox to a specific directory:
b4 am {{[-o|--outdir]}} {{path/to/directory}} {{message_id}}