From 129823c4997c65ad0ee711ab2fcfc91d00e6278c Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 18 Apr 2021 13:41:38 -0400 Subject: .gitignore: Ignore generated .pot files. These files are automatically-extracted templates rather than source, hence shouldn't be checked in. * .gitignore: Add a glob pattern to ignore .pot files. --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index fc8a859336..aeac63fe4d 100644 --- a/.gitignore +++ b/.gitignore @@ -93,6 +93,7 @@ /nix/config.h /nix/config.h.in /po/doc/*.mo +/po/doc/*.pot /po/guix/*.gmo /po/guix/*.insert-header /po/guix/*.mo -- cgit 1.4.1 From 8b5339acfe381dca887b38634dcfdecae738ce7b Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 21 Apr 2021 14:09:38 -0400 Subject: .gitignore: Ignore release artifacts. Not ignoring these in the tree leads to the next generated version (.version) being suffixed with '-dirty', which confuses things. * .gitignore [/guix-*]: New pattern. [/doc/stamp-[0-9]]: Adjust to ... [/doc/stamp-*]: ... this. [/release-*]: New pattern. --- .gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index aeac63fe4d..52f06a25d0 100644 --- a/.gitignore +++ b/.gitignore @@ -75,7 +75,7 @@ /etc/guix-publish.service /etc/init.d/guix-daemon /etc/openrc/guix-daemon -/guix-daemon +/guix-* /guix/config.scm /libformat.a /libstore.a @@ -129,6 +129,7 @@ /po/packages/remove-potcdate.sin /po/packages/stamp-po /pre-inst-env +/release-* /scripts/guix /test-env /test-tmp @@ -147,7 +148,7 @@ tmp /doc/os-config-lightweight-desktop.texi /nix/scripts/download /.version -/doc/stamp-[0-9] +/doc/stamp-* /gnu/packages/bootstrap /gnu/packages/aux-files/guile-guile-launcher.o /guile -- cgit 1.4.1 From 214b77b5e749e2ca5891bfc87f946031cf8934e6 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 5 May 2021 13:37:07 -0400 Subject: .gitignore: Ignore .tarball-ignore. This file can be useful to fix a version string when experimenting with 'make release'. * .gitignore: Add a pattern to ignore .tarball-version. --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 52f06a25d0..37ba7cb910 100644 --- a/.gitignore +++ b/.gitignore @@ -147,6 +147,7 @@ stamp-h[0-9] tmp /doc/os-config-lightweight-desktop.texi /nix/scripts/download +/.tarball-version /.version /doc/stamp-* /gnu/packages/bootstrap -- cgit 1.4.1 From abff6f0fac2104c3ba2129166a4409568e9c7b16 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 10 May 2021 22:33:08 -0400 Subject: .gitignore: Ignore .mo files. * .gitignore: Ignore files matching the *.mo pattern. --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 37ba7cb910..88fe24586d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.eps *.go *.log +*.mo *.pdf *.png *.tar.xz -- cgit 1.4.1