* Re: [PATCH] [.gitignore] match ncscope.out
2008-05-22 1:23 [PATCH] [.gitignore] match ncscope.out Jike Song
@ 2008-05-21 6:29 ` Jianjun Kong
2008-05-21 20:47 ` Jan Engelhardt
1 sibling, 0 replies; 5+ messages in thread
From: Jianjun Kong @ 2008-05-21 6:29 UTC (permalink / raw)
To: Jike Song; +Cc: sam, akpm, linux-kernel
On Thu, May 22, 2008 at 09:23:10AM +0800, Jike Song wrote:
> From e8e67fca3f9227b612a59d8afd0464222231e362 Mon Sep 17 00:00:00 2001
> From: Jike Song <albcamus@gmail.com>
> Date: Tue, 20 May 2008 16:15:05 +0800
> Subject: [PATCH] [.gitignore] match ncscope.out
>
> Sometimes I got this:
>
> $ git-status
> {snip}
> # On branch master
> # Untracked files:
> # (use "git add <file>..." to include in what will be committed)
> #
> # ncscope.out
> nothing added to commit but untracked files present (use "git add" to
> track)
Yes, there is also another two files, ncscope.in.out and ncscope.po.out
kongove@ubuntu:~/git/linux-2.6$ git commit -a
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# ncscope.in.out
# ncscope.po.out
--
| Feel Earthquake, Feel Fright!
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| Jianjun Kong | www.kongove.cn
| Xi'an Institute of Post & Telecommunications
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [.gitignore] match ncscope.out
2008-05-22 1:23 [PATCH] [.gitignore] match ncscope.out Jike Song
2008-05-21 6:29 ` Jianjun Kong
@ 2008-05-21 20:47 ` Jan Engelhardt
2008-05-23 2:53 ` Jike Song
2008-05-25 7:14 ` Sam Ravnborg
1 sibling, 2 replies; 5+ messages in thread
From: Jan Engelhardt @ 2008-05-21 20:47 UTC (permalink / raw)
To: Jike Song; +Cc: sam, akpm, linux-kernel
On Thursday 2008-05-22 03:23, Jike Song wrote:
> ---
> .gitignore | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/.gitignore b/.gitignore
> index 090b293..a48b1e1 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -51,7 +51,7 @@ patches
> series
>
> # cscope files
> -cscope.*
> +*cscope.*
Unless you know there is acscope, bcscope, etc. I'd rather add
just ncscope.* instead of the catches-more *cscope.*.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] [.gitignore] match ncscope.out
@ 2008-05-22 1:23 Jike Song
2008-05-21 6:29 ` Jianjun Kong
2008-05-21 20:47 ` Jan Engelhardt
0 siblings, 2 replies; 5+ messages in thread
From: Jike Song @ 2008-05-22 1:23 UTC (permalink / raw)
To: sam; +Cc: akpm, linux-kernel
From e8e67fca3f9227b612a59d8afd0464222231e362 Mon Sep 17 00:00:00 2001
From: Jike Song <albcamus@gmail.com>
Date: Tue, 20 May 2008 16:15:05 +0800
Subject: [PATCH] [.gitignore] match ncscope.out
Sometimes I got this:
$ git-status
{snip}
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# ncscope.out
nothing added to commit but untracked files present (use "git add"
to track)
Fix it.
Signed-off-by: Jike Song <albcamus@gmail.com>
---
.gitignore | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/.gitignore b/.gitignore
index 090b293..a48b1e1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -51,7 +51,7 @@ patches
series
# cscope files
-cscope.*
+*cscope.*
*.orig
*.rej
--
1.5.4.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] [.gitignore] match ncscope.out
2008-05-21 20:47 ` Jan Engelhardt
@ 2008-05-23 2:53 ` Jike Song
2008-05-25 7:14 ` Sam Ravnborg
1 sibling, 0 replies; 5+ messages in thread
From: Jike Song @ 2008-05-23 2:53 UTC (permalink / raw)
To: Jan Engelhardt; +Cc: sam, akpm, linux-kernel
sounds reasonable. As far as I know, `ncscope*.out' is enough to
match all the cscope tmp files.
--
thanks and regards,
Jike
On Thu, May 22, 2008 at 4:47 AM, Jan Engelhardt <jengelh@medozas.de> wrote:
>
> On Thursday 2008-05-22 03:23, Jike Song wrote:
>> ---
>> .gitignore | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/.gitignore b/.gitignore
>> index 090b293..a48b1e1 100644
>> --- a/.gitignore
>> +++ b/.gitignore
>> @@ -51,7 +51,7 @@ patches
>> series
>>
>> # cscope files
>> -cscope.*
>> +*cscope.*
>
> Unless you know there is acscope, bcscope, etc. I'd rather add
> just ncscope.* instead of the catches-more *cscope.*.
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [.gitignore] match ncscope.out
2008-05-21 20:47 ` Jan Engelhardt
2008-05-23 2:53 ` Jike Song
@ 2008-05-25 7:14 ` Sam Ravnborg
1 sibling, 0 replies; 5+ messages in thread
From: Sam Ravnborg @ 2008-05-25 7:14 UTC (permalink / raw)
To: Jan Engelhardt; +Cc: Jike Song, akpm, linux-kernel
On Wed, May 21, 2008 at 10:47:28PM +0200, Jan Engelhardt wrote:
>
> On Thursday 2008-05-22 03:23, Jike Song wrote:
> > ---
> > .gitignore | 2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/.gitignore b/.gitignore
> > index 090b293..a48b1e1 100644
> > --- a/.gitignore
> > +++ b/.gitignore
> > @@ -51,7 +51,7 @@ patches
> > series
> >
> > # cscope files
> > -cscope.*
> > +*cscope.*
>
> Unless you know there is acscope, bcscope, etc. I'd rather add
> just ncscope.* instead of the catches-more *cscope.*.
I did this change when I applied it.
Thanks,
Sam
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-05-25 7:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-22 1:23 [PATCH] [.gitignore] match ncscope.out Jike Song
2008-05-21 6:29 ` Jianjun Kong
2008-05-21 20:47 ` Jan Engelhardt
2008-05-23 2:53 ` Jike Song
2008-05-25 7:14 ` Sam Ravnborg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox