* [PATCH] gitignore: ignore GNU GLOBAL tag files
@ 2011-03-07 4:49 Namhyung Kim
2011-03-07 12:00 ` Ævar Arnfjörð Bjarmason
0 siblings, 1 reply; 5+ messages in thread
From: Namhyung Kim @ 2011-03-07 4:49 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
---
.gitignore | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index c460c66766a..cec14c5f48d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -207,6 +207,10 @@
/configure
/tags
/TAGS
+/GTAGS
+/GRTAGS
+/GPATH
+/GSYMS
/cscope*
*.obj
*.lib
--
1.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] gitignore: ignore GNU GLOBAL tag files
2011-03-07 4:49 [PATCH] gitignore: ignore GNU GLOBAL tag files Namhyung Kim
@ 2011-03-07 12:00 ` Ævar Arnfjörð Bjarmason
2011-03-07 12:07 ` Matthieu Moy
0 siblings, 1 reply; 5+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2011-03-07 12:00 UTC (permalink / raw)
To: Namhyung Kim; +Cc: Junio C Hamano, git
On Mon, Mar 7, 2011 at 05:49, Namhyung Kim <namhyung@gmail.com> wrote:
> /TAGS
> +/GTAGS
> +/GRTAGS
> +/GPATH
> +/GSYMS
> /cscope*
> *.obj
> *.lib
What causes these to be added?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] gitignore: ignore GNU GLOBAL tag files
2011-03-07 12:00 ` Ævar Arnfjörð Bjarmason
@ 2011-03-07 12:07 ` Matthieu Moy
2011-03-07 13:02 ` Roberto Vargas Caballero
2011-03-08 1:42 ` Namhyung Kim
0 siblings, 2 replies; 5+ messages in thread
From: Matthieu Moy @ 2011-03-07 12:07 UTC (permalink / raw)
To: Ævar Arnfjörð Bjarmason; +Cc: Namhyung Kim, Junio C Hamano, git
Ævar Arnfjörð Bjarmason <avarab@gmail.com> writes:
> On Mon, Mar 7, 2011 at 05:49, Namhyung Kim <namhyung@gmail.com> wrote:
>
>> /TAGS
>> +/GTAGS
>> +/GRTAGS
>> +/GPATH
>> +/GSYMS
>> /cscope*
>> *.obj
>> *.lib
>
> What causes these to be added?
I don't know, but I suspect they are generated by some variant of
(e|c)tags which do not appear in our Makefile.
If this is the case, I'd say the place to put these is in a user-wide
.gitignore (cf. core.excludesfile).
--
Matthieu Moy
http://www-verimag.imag.fr/~moy/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] gitignore: ignore GNU GLOBAL tag files
2011-03-07 12:07 ` Matthieu Moy
@ 2011-03-07 13:02 ` Roberto Vargas Caballero
2011-03-08 1:42 ` Namhyung Kim
1 sibling, 0 replies; 5+ messages in thread
From: Roberto Vargas Caballero @ 2011-03-07 13:02 UTC (permalink / raw)
To: Matthieu Moy
Cc: Ævar Arnfjörð Bjarmason, Namhyung Kim,
Junio C Hamano, git
El lun, 07-03-2011 a las 13:07 +0100, Matthieu Moy escribió:
> Ævar Arnfjörð Bjarmason <avarab@gmail.com> writes:
>
> > On Mon, Mar 7, 2011 at 05:49, Namhyung Kim <namhyung@gmail.com> wrote:
> >
> >> /TAGS
> >> +/GTAGS
> >> +/GRTAGS
> >> +/GPATH
> >> +/GSYMS
> >> /cscope*
> >> *.obj
> >> *.lib
> >
> > What causes these to be added?
>
> I don't know, but I suspect they are generated by some variant of
> (e|c)tags which do not appear in our Makefile.
It is generated by GNU GLOBAL (http://www.gnu.org/software/global/).
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] gitignore: ignore GNU GLOBAL tag files
2011-03-07 12:07 ` Matthieu Moy
2011-03-07 13:02 ` Roberto Vargas Caballero
@ 2011-03-08 1:42 ` Namhyung Kim
1 sibling, 0 replies; 5+ messages in thread
From: Namhyung Kim @ 2011-03-08 1:42 UTC (permalink / raw)
To: Matthieu Moy; +Cc: Ævar Arnfjörð Bjarmason, Junio C Hamano, git
2011-03-07 (월), 13:07 +0100, Matthieu Moy:
> Ævar Arnfjörð Bjarmason <avarab@gmail.com> writes:
>
> > On Mon, Mar 7, 2011 at 05:49, Namhyung Kim <namhyung@gmail.com> wrote:
> >
> >> /TAGS
> >> +/GTAGS
> >> +/GRTAGS
> >> +/GPATH
> >> +/GSYMS
> >> /cscope*
> >> *.obj
> >> *.lib
> >
> > What causes these to be added?
>
> I don't know, but I suspect they are generated by some variant of
> (e|c)tags which do not appear in our Makefile.
>
> If this is the case, I'd say the place to put these is in a user-wide
> .gitignore (cf. core.excludesfile).
>
Yes, they are from GNU GLOBAL source code tag system. And sorry, I
didn't aware of that config variable. I'll use it for my environments
then.
Thanks.
--
Regards,
Namhyung Kim
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-03-08 1:42 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-07 4:49 [PATCH] gitignore: ignore GNU GLOBAL tag files Namhyung Kim
2011-03-07 12:00 ` Ævar Arnfjörð Bjarmason
2011-03-07 12:07 ` Matthieu Moy
2011-03-07 13:02 ` Roberto Vargas Caballero
2011-03-08 1:42 ` Namhyung Kim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).