Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Apr 2026 16:31:39 +0000
From:      Enji Cooper <ngie@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 079bfe2a372f - stable/14 - .gitignore: ignore additional unwanted files
Message-ID:  <69ecec6b.45bec.5d0f1f24@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/14 has been updated by ngie:

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

commit 079bfe2a372fb9000e2573f4135537e2b0c3adda
Author:     Enji Cooper <ngie@FreeBSD.org>
AuthorDate: 2026-02-04 07:39:03 +0000
Commit:     Enji Cooper <ngie@FreeBSD.org>
CommitDate: 2026-04-25 16:31:33 +0000

    .gitignore: ignore additional unwanted files
    
    Ignore more files generated by toolchains, e.g., `.pico`, etc. Ignore the
    `.DS_Store` produced by macOS as well because all they provide is
    additional file metadata that shouldn't be committed to `git`.
    
    MFC after:      1 week
    Differential Revision:  https://reviews.freebsd.org/D55096
    
    (cherry picked from commit 4544f34f2d30ee63ab1eec9fa52c31bd92d457ca)
---
 .gitignore | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/.gitignore b/.gitignore
index ffa366fde357..220afda3b2ce 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,9 +1,17 @@
 *.a
 *.core
+*.lo
+*.nossppico
 *.o
 *.orig
+*.pico
+*.pieo
+*.po
+# Don't ignore translation files under `contrib/...`.
+!contrib/**/po
 *.rej
 *.so
+*.so.[0-9]*
 *.sw[nop]
 *~
 _.tinderbox.*
@@ -14,6 +22,8 @@ _.arm64.*
 _.i386.*
 _.powerpc.*
 _.riscv.*
+.*DS_Store
+.depend*
 GPATH
 GRTAGS
 GTAGS


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69ecec6b.45bec.5d0f1f24>