From: Alejandro Colomar <alx.manpages@gmail.com>
To: mtk.manpages@gmail.com
Cc: Alejandro Colomar <alx.manpages@gmail.com>, linux-man@vger.kernel.org
Subject: [PATCH] Add script to get modified pages for commit msgs
Date: Mon, 16 Nov 2020 00:08:08 +0100 [thread overview]
Message-ID: <20201115230807.1994-1-alx.manpages@gmail.com> (raw)
The script can be used in this way:
git commit -sm "$(./scripts/modified_pages.sh): Short commit msg"
And then maybe --ammend and add a longer message.
This is especially useful for changes to many pages at once,
usually when running a script to apply global changes.
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
Hi Michael,
I put into a script the commands I used for a previous
patch's commit msg.
Cheers,
Alex
scripts/modified_pages.sh | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100755 scripts/modified_pages.sh
diff --git a/scripts/modified_pages.sh b/scripts/modified_pages.sh
new file mode 100755
index 000000000..7fac2d98c
--- /dev/null
+++ b/scripts/modified_pages.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+## Usage:
+## git commit -m "$(./scripts/modified_pages.sh): Short message here"
+##
+## How it works:
+## 1) Read git status.
+## 2) Staged changes are always printed before "Changes not staged for commit".
+## Cut from that point to not include files not staged for commit.
+## 3) grep lines containing "modified:"
+## (each of those is a changed file)
+## 4) Keep only the basenames of the files,
+## and separate them using a comma.
+## 5) Remove the newline characters.
+## 6) Remove the comma before the first file
+##
+## The result is a list of all files with changes staged for commit,
+## separated by ", ".
+
+
+git status \
+|sed "/Changes not staged for commit:/q" \
+|grep "modified:" \
+|sed "s%\tmodified: %,%; s%man[1-9]/%%" \
+|tr -d '\n' \
+|sed "s/^, //"
--
2.29.2
next reply other threads:[~2020-11-15 23:10 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-15 23:08 Alejandro Colomar [this message]
2020-11-16 0:16 ` [PATCH v2] Add script to get modified pages for commit msgs Alejandro Colomar
2020-11-16 0:46 ` Alejandro Colomar (man-pages)
2020-11-16 8:07 ` Michael Kerrisk (man-pages)
2020-11-16 19:42 ` Alejandro Colomar
2020-11-16 20:27 ` Michael Kerrisk (man-pages)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201115230807.1994-1-alx.manpages@gmail.com \
--to=alx.manpages@gmail.com \
--cc=linux-man@vger.kernel.org \
--cc=mtk.manpages@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox