Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Nov 2023 17:51:37 GMT
From:      Brooks Davis <brooks@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: afe1e6ba860b - main - Sort .git-blame-ignore-revs by commit order
Message-ID:  <202311151751.3AFHpbCw038098@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by brooks:

URL: https://cgit.FreeBSD.org/src/commit/?id=afe1e6ba860bb3733d9aae9083ce2622597cabfc

commit afe1e6ba860bb3733d9aae9083ce2622597cabfc
Author:     Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2023-11-15 17:46:57 +0000
Commit:     Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2023-11-15 17:46:57 +0000

    Sort .git-blame-ignore-revs by commit order
    
    This makes it easier to add blocks of commits such as
    4ca5df80393e1f2..c90d0600ee000e78 which do a single thing over the
    course of multiple commits.  Sorting by hash would require manually
    inserting each one with a comment.
    
    Reviewed by:    emaste
    Differential Revision:  https://reviews.freebsd.org/D42601
---
 .git-blame-ignore-revs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs
index 2a4ab51f89c1..356201cef3c9 100644
--- a/.git-blame-ignore-revs
+++ b/.git-blame-ignore-revs
@@ -6,11 +6,11 @@
 # `git config --global blame.ignoreRevsFile .git-blame-ignore-revs`.  GitHub's
 # blame view also uses this by default.
 #
-# For consistency this file is sorted by hash.
+# This file is sorted in git log order (newest commits first).
 
+# elfctl whitespace
+828e50092ac84f50247fb3f400027fc7510d8141
 # regen syscall files after d51198d63b63
 2c9764f36b6f20e9a6c71ce64a21988a394050b6
 # Remove whitespace at EOL.
 7ebcc426efefea9cd16ac6f565e72030c608f7a4
-# elfctl whitespace
-828e50092ac84f50247fb3f400027fc7510d8141



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202311151751.3AFHpbCw038098>