From 1c6098b19a091cec2460a99327fb139ff7e0d07e Mon Sep 17 00:00:00 2001 From: Florian B Date: Sun, 23 May 2021 02:25:59 +0200 Subject: [PATCH] git-mailinfo: add page (#5939) * git-mailinfo: add page * improve example * Update pages/common/git-mailinfo.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> * Update pages/common/git-mailinfo.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> * Update pages/common/git-mailinfo.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> * Update pages/common/git-mailinfo.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> * Update pages/common/git-mailinfo.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> * Update pages/common/git-mailinfo.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> * Update pages/common/git-mailinfo.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> --- pages/common/git-mailinfo.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/git-mailinfo.md diff --git a/pages/common/git-mailinfo.md b/pages/common/git-mailinfo.md new file mode 100644 index 0000000000..89329b1857 --- /dev/null +++ b/pages/common/git-mailinfo.md @@ -0,0 +1,16 @@ +# git mailinfo + +> Extract patch and authorship information from a single email message. +> More information: . + +- Extract the patch and author data from an email message: + +`git mailinfo {{message|patch}}` + +- Extract but remove leading and trailing whitespace: + +`git mailinfo -k {{message|patch}}` + +- Remove everything from the body before a scissors line (e.g. "-->* --") and retrieve the message or patch: + +`git mailinfo --scissors {{message|patch}}`