[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/1] update ignore patterns
From: |
William Hubbs |
Subject: |
[PATCH 1/1] update ignore patterns |
Date: |
Mon, 20 Sep 2010 22:37:27 -0500 |
This is not a code change, but it updates the .gitignore files so that
generated files and executables will not be tracked by git.
I did not include the modules directory in this due to another patch I
am working on which will reorganize that code.
---
.gitignore | 9 +++------
doc/.gitignore | 3 +++
po/.gitignore | 2 ++
src/clients/say/.gitignore | 1 +
src/clients/spdsend/.gitignore | 1 +
src/modules/audio/.gitignore | 1 +
src/server/.gitignore | 1 +
src/tests/.gitignore | 5 +++++
8 files changed, 17 insertions(+), 6 deletions(-)
create mode 100644 po/.gitignore
create mode 100644 src/clients/say/.gitignore
create mode 100644 src/clients/spdsend/.gitignore
create mode 100644 src/modules/audio/.gitignore
create mode 100644 src/server/.gitignore
create mode 100644 src/tests/.gitignore
diff --git a/.gitignore b/.gitignore
index 66e064c..b479803 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,17 +6,14 @@
Makefile.in
aclocal.m4
autom4te.cache
-config.guess
-config.sub
-config.h.in
+config.*
configure
depcomp
install-sh
ltmain.sh
missing
Makefile
-config.h
-config.log
-config.status
libtool
+py-compile
+speech-dispatcher.pc
stamp-h1
diff --git a/doc/.gitignore b/doc/.gitignore
index bf4b27b..fc85972 100644
--- a/doc/.gitignore
+++ b/doc/.gitignore
@@ -1,2 +1,5 @@
+*.info
mdate-sh
+stamp-vti
texinfo.tex
+version.texi
diff --git a/po/.gitignore b/po/.gitignore
new file mode 100644
index 0000000..a383292
--- /dev/null
+++ b/po/.gitignore
@@ -0,0 +1,2 @@
+POTFILES
+stamp-it
diff --git a/src/clients/say/.gitignore b/src/clients/say/.gitignore
new file mode 100644
index 0000000..f47a569
--- /dev/null
+++ b/src/clients/say/.gitignore
@@ -0,0 +1 @@
+spd-say
diff --git a/src/clients/spdsend/.gitignore b/src/clients/spdsend/.gitignore
new file mode 100644
index 0000000..d74f2c8
--- /dev/null
+++ b/src/clients/spdsend/.gitignore
@@ -0,0 +1 @@
+spdsend
diff --git a/src/modules/audio/.gitignore b/src/modules/audio/.gitignore
new file mode 100644
index 0000000..f75f98e
--- /dev/null
+++ b/src/modules/audio/.gitignore
@@ -0,0 +1 @@
+static_plugins.c
diff --git a/src/server/.gitignore b/src/server/.gitignore
new file mode 100644
index 0000000..b5eb8d3
--- /dev/null
+++ b/src/server/.gitignore
@@ -0,0 +1 @@
+speech-dispatcher
diff --git a/src/tests/.gitignore b/src/tests/.gitignore
new file mode 100644
index 0000000..e3c8e03
--- /dev/null
+++ b/src/tests/.gitignore
@@ -0,0 +1,5 @@
+clibrary
+clibrary2
+connection_recovery
+long_message
+run_test
--
1.7.2.2
- [PATCH 1/1] update ignore patterns,
William Hubbs <=