summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordana <dana@dana.is>2026-06-18 23:20:40 +0000
committerdana <dana@dana.is>2026-06-20 19:49:00 -0500
commit591ea1bb36b8e3ea8417fdfca5f6abcae0cfca3e (patch)
tree45448c6158f974a64a4b86609e1e4ef1c242728a
parent54773: params: make out-of-range (w) subscript index work like others (diff)
downloadzsh-591ea1bb36b8e3ea8417fdfca5f6abcae0cfca3e.tar
zsh-591ea1bb36b8e3ea8417fdfca5f6abcae0cfca3e.tar.gz
zsh-591ea1bb36b8e3ea8417fdfca5f6abcae0cfca3e.tar.bz2
zsh-591ea1bb36b8e3ea8417fdfca5f6abcae0cfca3e.tar.lz
zsh-591ea1bb36b8e3ea8417fdfca5f6abcae0cfca3e.tar.xz
zsh-591ea1bb36b8e3ea8417fdfca5f6abcae0cfca3e.tar.zst
zsh-591ea1bb36b8e3ea8417fdfca5f6abcae0cfca3e.zip
54808: add .git-blame-ignore-revs
-rw-r--r--.git-blame-ignore-revs26
-rw-r--r--ChangeLog2
2 files changed, 28 insertions, 0 deletions
diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs
new file mode 100644
index 000000000..820c77fa0
--- /dev/null
+++ b/.git-blame-ignore-revs
@@ -0,0 +1,26 @@
+# commits to be ignored by git blame. use as follows:
+#
+# git config blame.ignoreRevsFile .git-blame-ignore-revs
+#
+# .git-blame-ignore-revs is the conventional file name for this purpose, so you
+# may prefer to use it globally instead. this is possible in git 2.53+:
+#
+# git config --global blame.ignoreRevsFile ':(optional).git-blame-ignore-revs'
+#
+# in general, only trivial, non-functionality-affecting commits (e.g. typo and
+# white-space fixes) should be added to this list
+#
+# please add in ascending chronological order
+
+# unposted: Fix inconsistent white space in change log
+92b0e885d6273315602668eb50f25310020fee13
+# unposted: fix indentation (whitespace-only change)
+6c6200520afa0409c5c310cd421f33353c44c61d
+# 45101: Adjust white space
+1a8c69e26fc7e64e1b5e2837d7754a910b6a0c26
+# Clean up error-message white space
+4ce66857b71b40a0661df3780ff557f2b0f4cb13
+# 46139: _git: Remove hanging whitespaces
+d839833e4e00ee320a353846eaa235ab952181f0
+# 49435: Remove trailing whitespaces in expn.yo
+02f75cf38699b99340c1d2c8f5a9d9aaf81432e7
diff --git a/ChangeLog b/ChangeLog
index b6445fb77..86d66fdce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2026-06-20 dana <dana@dana.is>
+ * 54808: .git-blame-ignore-revs: add .git-blame-ignore-revs
+
* 54773: Src/params.c, Test/D06subscript.ztst: make out-of-range
(w) subscript index work like others