LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] .gitignore update
@ 2008-10-17 1:44 Alexey Dobriyan
0 siblings, 0 replies; 6+ messages in thread
From: Alexey Dobriyan @ 2008-10-17 1:44 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---
Documentation/accounting/.gitignore | 1 +
Documentation/auxdisplay/.gitignore | 1 +
Documentation/connector/.gitignore | 1 +
Documentation/ia64/.gitignore | 1 +
Documentation/networking/.gitignore | 1 +
Documentation/pcmcia/.gitignore | 1 +
Documentation/spi/.gitignore | 2 ++
Documentation/video4linux/.gitignore | 1 +
Documentation/vm/.gitignore | 1 +
Documentation/watchdog/src/.gitignore | 2 ++
arch/x86/boot/compressed/.gitignore | 2 ++
arch/x86/kernel/cpu/.gitignore | 1 +
12 files changed, 15 insertions(+)
new file mode 100644
--- /dev/null
+++ b/Documentation/accounting/.gitignore
@@ -0,0 +1 @@
+getdelays
new file mode 100644
--- /dev/null
+++ b/Documentation/auxdisplay/.gitignore
@@ -0,0 +1 @@
+cfag12864b-example
new file mode 100644
--- /dev/null
+++ b/Documentation/connector/.gitignore
@@ -0,0 +1 @@
+ucon
new file mode 100644
--- /dev/null
+++ b/Documentation/ia64/.gitignore
@@ -0,0 +1 @@
+aliasing-test
new file mode 100644
--- /dev/null
+++ b/Documentation/networking/.gitignore
@@ -0,0 +1 @@
+ifenslave
new file mode 100644
--- /dev/null
+++ b/Documentation/pcmcia/.gitignore
@@ -0,0 +1 @@
+crc32hash
new file mode 100644
--- /dev/null
+++ b/Documentation/spi/.gitignore
@@ -0,0 +1,2 @@
+spidev_fdx
+spidev_test
new file mode 100644
--- /dev/null
+++ b/Documentation/video4linux/.gitignore
@@ -0,0 +1 @@
+v4lgrab
new file mode 100644
--- /dev/null
+++ b/Documentation/vm/.gitignore
@@ -0,0 +1 @@
+slabinfo
new file mode 100644
--- /dev/null
+++ b/Documentation/watchdog/src/.gitignore
@@ -0,0 +1,2 @@
+watchdog-simple
+watchdog-test
--- a/arch/x86/boot/compressed/.gitignore
+++ b/arch/x86/boot/compressed/.gitignore
@@ -1 +1,3 @@
relocs
+vmlinux.bin.all
+vmlinux.relocs
new file mode 100644
--- /dev/null
+++ b/arch/x86/kernel/cpu/.gitignore
@@ -0,0 +1 @@
+capflags.c
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] .gitignore update
2007-07-29 14:57 ` Jan Engelhardt
@ 2007-07-30 15:29 ` Alexey Dobriyan
0 siblings, 0 replies; 6+ messages in thread
From: Alexey Dobriyan @ 2007-07-30 15:29 UTC (permalink / raw)
To: Jan Engelhardt; +Cc: akpm, linux-kernel
On Sun, Jul 29, 2007 at 04:57:22PM +0200, Jan Engelhardt wrote:
>
> On Jul 26 2007 16:15, Alexey Dobriyan wrote:
> >
> >Somehow I ended up with the following in tree:
> >
> > $ git status
> > ...
> > # Untracked files:
> > # (use "git add <file>..." to include in what will be committed)
> > #
> > # fs/proc/root.o.FuMxJQ
> > # net/ipv4/tcp_minisocks.o.geCDYR
> >
> >These are presumably temporary gcc files, which aren't interesting.
>
> But they should not be there by default! Or are they?
Who knows. I straced a bit but rename(2) seems to not happen. However, this
is not the first time I see them, and yes, box is frequently rebooted
hard way.
> Looks like an interrupted assembler stage or so.
These *.o.* are normal but truncated corresponding *.o files.
> So I do not think *.o.* should be added.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] .gitignore update
2007-07-26 12:15 Alexey Dobriyan
@ 2007-07-29 14:57 ` Jan Engelhardt
2007-07-30 15:29 ` Alexey Dobriyan
0 siblings, 1 reply; 6+ messages in thread
From: Jan Engelhardt @ 2007-07-29 14:57 UTC (permalink / raw)
To: Alexey Dobriyan; +Cc: akpm, linux-kernel
On Jul 26 2007 16:15, Alexey Dobriyan wrote:
>
>Somehow I ended up with the following in tree:
>
> $ git status
> ...
> # Untracked files:
> # (use "git add <file>..." to include in what will be committed)
> #
> # fs/proc/root.o.FuMxJQ
> # net/ipv4/tcp_minisocks.o.geCDYR
>
>These are presumably temporary gcc files, which aren't interesting.
But they should not be there by default! Or are they?
Looks like an interrupted assembler stage or so.
So I do not think *.o.* should be added.
Jan
--
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] .gitignore update
@ 2007-07-26 12:15 Alexey Dobriyan
2007-07-29 14:57 ` Jan Engelhardt
0 siblings, 1 reply; 6+ messages in thread
From: Alexey Dobriyan @ 2007-07-26 12:15 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel
Somehow I ended up with the following in tree:
$ git status
...
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# fs/proc/root.o.FuMxJQ
# net/ipv4/tcp_minisocks.o.geCDYR
These are presumably temporary gcc files, which aren't interesting.
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
---
.gitignore | 1 +
1 file changed, 1 insertion(+)
--- a/.gitignore
+++ b/.gitignore
@@ -7,6 +7,7 @@
#
.*
*.o
+*.o.*
*.a
*.s
*.ko
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] .gitignore update
2007-07-04 11:07 Alexey Dobriyan
@ 2007-07-04 13:23 ` Segher Boessenkool
0 siblings, 0 replies; 6+ messages in thread
From: Segher Boessenkool @ 2007-07-04 13:23 UTC (permalink / raw)
To: Alexey Dobriyan; +Cc: akpm, linux-kernel, devel
> headers_install by default puts headers into usr/include/ .
> They're auto-generated, so should be ignored.
>
> Same for *.orig, *.rej .
If you have .orig or .rej files hanging around, it means you
have an unresolved merge conflict. Better not ignore it.
Segher
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] .gitignore update
@ 2007-07-04 11:07 Alexey Dobriyan
2007-07-04 13:23 ` Segher Boessenkool
0 siblings, 1 reply; 6+ messages in thread
From: Alexey Dobriyan @ 2007-07-04 11:07 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel, devel
headers_install by default puts headers into usr/include/ .
They're auto-generated, so should be ignored.
Same for *.orig, *.rej .
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
---
.gitignore | 3 +++
usr/.gitignore | 1 +
2 files changed, 4 insertions(+)
--- a/.gitignore
+++ b/.gitignore
@@ -45,3 +45,6 @@ series
# cscope files
cscope.*
+
+*.orig
+*.rej
--- a/usr/.gitignore
+++ b/usr/.gitignore
@@ -5,3 +5,4 @@ gen_init_cpio
initramfs_data.cpio
initramfs_data.cpio.gz
initramfs_list
+include
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-10-17 1:42 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-10-17 1:44 [PATCH] .gitignore update Alexey Dobriyan
-- strict thread matches above, loose matches on Subject: below --
2007-07-26 12:15 Alexey Dobriyan
2007-07-29 14:57 ` Jan Engelhardt
2007-07-30 15:29 ` Alexey Dobriyan
2007-07-04 11:07 Alexey Dobriyan
2007-07-04 13:23 ` Segher Boessenkool
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).