kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #38340
Re: Git ignore status of fp-info-cache files
Hi Jeff,
Then here is a (micro-)patch to ignore them in the demo directory.
What trouble do you see with the QA dirs?
Cheers,
John
On Mon, Nov 12, 2018 at 5:45 PM Jeff Young <jeff@xxxxxxxxx> wrote:
>
> Either would probably work, but as they’re caches there’s not much benefit in putting them in git and adding them to .gitignore is certainly easier.
>
> I also have trouble with a bunch of the new QA directories. Anyone else seeing that, or is it OSX-specific?
>
>
> > On 12 Nov 2018, at 13:38, Wayne Stambaugh <stambaughw@xxxxxxxxx> wrote:
> >
> > I'm pretty sure the fp-info-cache files should be added to the
> > .gitignore file but Jeff would know for sure. I ignore them for my
> > projects without any issues.
> >
> >
> > On 11/12/2018 7:09 AM, John Beard wrote:
> >> Hi,
> >>
> >> Any time I open a demo project in the source tree, I get fp-info-cache
> >> files in the source tree, which are not .gitignore'd. These clutter
> >> the git working copy up a bit.
> >>
> >> Should these files either be created and committed (and kept up to
> >> date when the demos change), or added to the .gitignore file?
> >>
> >> Cheers,
> >>
> >> John
> >>
> >> _______________________________________________
> >> Mailing list: https://launchpad.net/~kicad-developers
> >> Post to : kicad-developers@xxxxxxxxxxxxxxxxxxx
> >> Unsubscribe : https://launchpad.net/~kicad-developers
> >> More help : https://help.launchpad.net/ListHelp
> >>
> >
> > _______________________________________________
> > Mailing list: https://launchpad.net/~kicad-developers
> > Post to : kicad-developers@xxxxxxxxxxxxxxxxxxx
> > Unsubscribe : https://launchpad.net/~kicad-developers
> > More help : https://help.launchpad.net/ListHelp
>
>
> _______________________________________________
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@xxxxxxxxxxxxxxxxxxx
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help : https://help.launchpad.net/ListHelp
From 64c062555c67ec0268b85942ea4f8e6c7ba70a71 Mon Sep 17 00:00:00 2001
From: John Beard <john.j.beard@xxxxxxxxx>
Date: Mon, 12 Nov 2018 23:30:32 +0000
Subject: [PATCH] .gitignore: demo fp-info-cache files
As cache files, these are not required to be checked-in
and generate more noise on file changes.
---
.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/.gitignore b/.gitignore
index a1a31d7ab..a19d9530f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -56,6 +56,7 @@ include/pcb_lexer.h
# demo project auxillary files
demos/**/*-bak
demos/**/_autosave-*
+demos/**/fp-info-cache
# editor/OS fluff
.*.swp
--
2.19.1
Follow ups
References