* [PATCH] Update .gitignore
@ 2017-10-13 17:05 Harsha Sharma
2017-10-17 12:32 ` Pablo Neira Ayuso
0 siblings, 1 reply; 10+ messages in thread
From: Harsha Sharma @ 2017-10-13 17:05 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel, outreachy-kernel, Harsha Sharma
Added comments and files generated by libtools
Signed-off-by: Harsha Sharma <harshasharmaiitr@gmail.com>
---
.gitignore | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/.gitignore b/.gitignore
index fa86c482..3d1fc79d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,17 +1,17 @@
+# Dependency and object files
*.a
*.la
*.lo
*.so
*.o
+
+# Generated by autoconf/configure/automake
.deps/
.dirstamp
-.libs/
Makefile
Makefile.in
-
/include/xtables-version.h
/include/iptables/internal.h
-
/aclocal.m4
/autom4te.cache/
/build-aux/
@@ -19,3 +19,9 @@ Makefile.in
/configure
/libtool
/stamp-h1
+/iptables/iptables-apply.8
+
+# Generated by libtool
+/iptables/xtables-multi
+/iptables/xtables-compat-multi
+.libs/
--
2.11.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] Update .gitignore
2017-10-13 17:05 [PATCH] Update .gitignore Harsha Sharma
@ 2017-10-17 12:32 ` Pablo Neira Ayuso
2017-10-17 12:36 ` Pablo Neira Ayuso
0 siblings, 1 reply; 10+ messages in thread
From: Pablo Neira Ayuso @ 2017-10-17 12:32 UTC (permalink / raw)
To: Harsha Sharma; +Cc: netfilter-devel, outreachy-kernel
On Fri, Oct 13, 2017 at 10:35:24PM +0530, Harsha Sharma wrote:
> Added comments and files generated by libtools
Applied, thanks.
Please, add the right tag next time, eg. [PATCH iptables] So I know
the route for this at quick glance.
Thanks!
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] Update .gitignore
2017-10-17 12:32 ` Pablo Neira Ayuso
@ 2017-10-17 12:36 ` Pablo Neira Ayuso
0 siblings, 0 replies; 10+ messages in thread
From: Pablo Neira Ayuso @ 2017-10-17 12:36 UTC (permalink / raw)
To: Harsha Sharma; +Cc: netfilter-devel, outreachy-kernel
On Tue, Oct 17, 2017 at 02:32:39PM +0200, Pablo Neira Ayuso wrote:
> On Fri, Oct 13, 2017 at 10:35:24PM +0530, Harsha Sharma wrote:
> > Added comments and files generated by libtools
>
> Applied, thanks.
>
> Please, add the right tag next time, eg. [PATCH iptables] So I know
> the route for this at quick glance.
For the record, I mangled this patch to focus on missing files that
need to be ignore, that's enough I think.
Thanks.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] Update .gitignore
@ 2010-06-28 2:33 Hidetoshi Seto
0 siblings, 0 replies; 10+ messages in thread
From: Hidetoshi Seto @ 2010-06-28 2:33 UTC (permalink / raw)
To: qemu-devel, kvm
Add some files/directories to .gitignore
- vapic.bin
A generated binary file
- libdis/ and libdis-user/
Directories generated in ./configure
- QMP/qmp-commands.txt
A generated text
- qemu-options.def
A generated file used as a source of qemu-options.h
Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
---
.gitignore | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index 2d7f439..81b1ba4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,6 +9,8 @@ config-target.*
libhw32
libhw64
libuser
+libdis
+libdis-user
qemu-doc.html
qemu-tech.html
qemu-doc.info
@@ -21,11 +23,13 @@ qemu-img
qemu-nbd
qemu-nbd.8
qemu-nbd.pod
+qemu-options.def
qemu-options.texi
qemu-img-cmds.texi
qemu-img-cmds.h
qemu-io
qemu-monitor.texi
+QMP/qmp-commands.txt
.gdbinit
*.a
*.aux
@@ -50,4 +54,5 @@ pc-bios/optionrom/linuxboot.bin
pc-bios/optionrom/multiboot.bin
pc-bios/optionrom/multiboot.raw
pc-bios/optionrom/extboot.bin
+pc-bios/optionrom/vapic.bin
.stgit-*
--
1.7.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH] Update .gitignore
@ 2010-06-21 5:24 Hidetoshi Seto
2010-06-21 8:19 ` Avi Kivity
0 siblings, 1 reply; 10+ messages in thread
From: Hidetoshi Seto @ 2010-06-21 5:24 UTC (permalink / raw)
To: kvm
I think some people have noticed that:
> $ ./configure
> $ make
> $ git status
> # On branch master
> # Untracked files:
> # (use "git add <file>..." to include in what will be committed)
> #
> # QMP/qmp-commands.txt
> # libdis-user/
> # libdis/
> # pc-bios/optionrom/vapic.bin
> nothing added to commit but untracked files present (use "git add" to track)
Please consider applying this patch to qemu-kvm.git.
Thanks,
H.Seto
=====
Subject: [PATCH] Update .gitignore
Add some files/directories to .gitignore
- vapic.bin
A generated binary file.
- libdis/ and libdis-user/
These are directories generated by ./configure.
- QMP/qmp-commands.txt
A generated text.
Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
---
.gitignore | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index 2d7f439..fa4f241 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,6 +9,8 @@ config-target.*
libhw32
libhw64
libuser
+libdis
+libdis-user
qemu-doc.html
qemu-tech.html
qemu-doc.info
@@ -26,6 +28,7 @@ qemu-img-cmds.texi
qemu-img-cmds.h
qemu-io
qemu-monitor.texi
+QMP/qmp-commands.txt
.gdbinit
*.a
*.aux
@@ -50,4 +53,5 @@ pc-bios/optionrom/linuxboot.bin
pc-bios/optionrom/multiboot.bin
pc-bios/optionrom/multiboot.raw
pc-bios/optionrom/extboot.bin
+pc-bios/optionrom/vapic.bin
.stgit-*
--
1.7.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [PATCH] Update .gitignore
2010-06-21 5:24 Hidetoshi Seto
@ 2010-06-21 8:19 ` Avi Kivity
0 siblings, 0 replies; 10+ messages in thread
From: Avi Kivity @ 2010-06-21 8:19 UTC (permalink / raw)
To: Hidetoshi Seto; +Cc: kvm
On 06/21/2010 08:24 AM, Hidetoshi Seto wrote:
> I think some people have noticed that:
>
>
>> $ ./configure
>> $ make
>> $ git status
>> # On branch master
>> # Untracked files:
>> # (use "git add <file>..." to include in what will be committed)
>> #
>> # QMP/qmp-commands.txt
>> # libdis-user/
>> # libdis/
>> # pc-bios/optionrom/vapic.bin
>> nothing added to commit but untracked files present (use "git add" to track)
>>
> Please consider applying this patch to qemu-kvm.git.
>
>
This is equally applicable to qemu.git, so please sent it to the qemu
mailing list, qemu-devel@nongnu.org.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] Update .gitignore
@ 2009-04-02 18:36 Jan Kiszka
2009-04-05 16:12 ` Avi Kivity
0 siblings, 1 reply; 10+ messages in thread
From: Jan Kiszka @ 2009-04-02 18:36 UTC (permalink / raw)
To: kvm-devel
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
.gitignore | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index fcdc357..22a8200 100644
--- a/.gitignore
+++ b/.gitignore
@@ -53,10 +53,14 @@ kernel/x86/coalesced_mmio.[ch]
kernel/x86/kvm_cache_regs.h
kernel/x86/vtd.c
kernel/x86/irq_comm.c
+kernel/x86/timer.c
+kernel/x86/kvm_timer.h
+kernel/x86/iommu.c
qemu/pc-bios/extboot.bin
qemu/qemu-doc.html
qemu/*.[18]
qemu/*.pod
qemu/qemu-tech.html
+qemu/qemu-options.texi
user/kvmtrace
user/test/x86/bootstrap
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH] update .gitignore
@ 2008-08-12 22:01 Karel Zak
2008-08-13 10:03 ` Kay Sievers
0 siblings, 1 reply; 10+ messages in thread
From: Karel Zak @ 2008-08-12 22:01 UTC (permalink / raw)
To: linux-hotplug
* add *~ editor backup files
* add .7 and .8 man pages (generated by xsltproc)
* remove duplicate .deps/ and *.o
Signed-off-by: Karel Zak <kzak@redhat.com>
---
.gitignore | 2 ++
udev/.gitignore | 2 --
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.gitignore b/.gitignore
index e96d00e..604fb7b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
+*~
*.o
+*.[78]
*.lo
*.la
.libs/
diff --git a/udev/.gitignore b/udev/.gitignore
index 5ce11ac..f698d4e 100644
--- a/udev/.gitignore
+++ b/udev/.gitignore
@@ -1,6 +1,4 @@
-*.o
*.a
udevd
udevadm
test-udev
-.deps/
--
1.5.5.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2017-10-17 12:36 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-13 17:05 [PATCH] Update .gitignore Harsha Sharma
2017-10-17 12:32 ` Pablo Neira Ayuso
2017-10-17 12:36 ` Pablo Neira Ayuso
-- strict thread matches above, loose matches on Subject: below --
2010-06-28 2:33 Hidetoshi Seto
2010-06-21 5:24 Hidetoshi Seto
2010-06-21 8:19 ` Avi Kivity
2009-04-02 18:36 Jan Kiszka
2009-04-05 16:12 ` Avi Kivity
2008-08-12 22:01 [PATCH] update .gitignore Karel Zak
2008-08-13 10:03 ` Kay Sievers
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.