summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorJim Porter <jporterbugs@gmail.com>2023-08-21 18:19:24 -0700
committerJim Porter <jporterbugs@gmail.com>2023-08-21 18:22:59 -0700
commit0df2efa4d6953fb3dbc50c5faa845e80154b447b (patch)
treea267efeb67f5d4c1ea87a54724a27ca2ad4aed65 /build-aux
parentb7bd7e92a969f012c8e6ad8d0cdbffd758054cab (diff)
downloademacs-0df2efa4d6953fb3dbc50c5faa845e80154b447b.tar.gz
; Fix issues running gitmerge
* .gitattributes: Ignore whitespace issues in java/INSTALL. * build-aux/git-hooks/pre-commit (git_diff): Explicitly allow "ChangeLog.android". * java/README: Remove extra trailing newline.
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/git-hooks/pre-commit3
1 files changed, 3 insertions, 0 deletions
diff --git a/build-aux/git-hooks/pre-commit b/build-aux/git-hooks/pre-commit
index 12b08d2c25f..2e0dd7dfd7c 100755
--- a/build-aux/git-hooks/pre-commit
+++ b/build-aux/git-hooks/pre-commit
@@ -60,6 +60,9 @@ while IFS= read -r new_name; do
-* | */-*)
echo "$new_name: File name component begins with '-'."
exit 1;;
+ ChangeLog.android)
+ # This file is explicitly ok.
+ ;;
ChangeLog | */ChangeLog)
echo "$new_name: Please use git commit messages, not ChangeLog files."
exit 1;;