Skip to content

Commit

Permalink
Remove duplicate entries in .gitignore; remove empty .gitignore files
Browse files Browse the repository at this point in the history
2012-06-10  Ivan Maidanski  <ivmai@mail.ru>

	* .gitignore: Add '/' prefix to file names existing (and to be
	ignored) only in the project root folder (INSTALL, aclocal.m4,
	autom4te*.cache, compile, config.cache, config.guess, config.log,
	config.status, config.sub, configure, depcomp, install, install-sh,
	libtool, ltmain.sh, missing, mkinstalldirs).
	* .gitignore: Add file names common for many child .gitignore files
	(.deps, .dirstamp, .libs, *.la, *.lo).
	* compat/.gitignore,
	* compat/java.net/.gitignore,
	* doc/api/.gitignore,
	* doc/www.gnu.org/announce/.gitignore,
	* doc/www.gnu.org/cp-tools/.gitignore,
	* doc/www.gnu.org/docs/.gitignore,
	* doc/www.gnu.org/downloads/.gitignore,
	* doc/www.gnu.org/events/.gitignore,
	* doc/www.gnu.org/faq/.gitignore,
	* external/.gitignore,
	* external/jsr166/.gitignore,
	* external/relaxngDatatype/.gitignore,
	* external/sax/.gitignore,
	* external/w3c_dom/.gitignore,
	* gnu/test/.gitignore,
	* native/fdlibm/.gitignore,
	* native/jawt/.gitignore,
	* native/jni/.gitignore,
	* native/jni/classpath/.gitignore,
	* native/jni/gconf-peer/.gitignore,
	* native/jni/gstreamer-peer/.gitignore,
	* native/jni/gtk-peer/.gitignore,
	* native/jni/java-io/.gitignore,
	* native/jni/java-lang/.gitignore,
	* native/jni/java-net/.gitignore,
	* native/jni/java-nio/.gitignore,
	* native/jni/java-util/.gitignore,
	* native/jni/native-lib/.gitignore,
	* native/jni/xmlj/.gitignore,
	* native/plugin/.gitignore,
	* native/testsuite/.gitignore,
	* native/vmi/.gitignore,
	* resource/.gitignore,
	* test/.gitignore,
	* test/gnu.java.lang.reflect/.gitignore,
	* test/java.io/.gitignore,
	* test/java.lang.reflect/.gitignore,
	* test/java.net/.gitignore,
	* test/java.util/.gitignore,
	* tools/gnu/classpath/tools/doclets/.gitignore,
	* tools/gnu/classpath/tools/doclets/debugdoclet/.gitignore,
	* tools/gnu/classpath/tools/doclets/htmldoclet/.gitignore,
	* tools/gnu/classpath/tools/doclets/xmldoclet/.gitignore,
	* tools/gnu/classpath/tools/doclets/xmldoclet/doctranslet/.gitignore,
	* tools/gnu/classpath/tools/gjdoc/.gitignore,
	* tools/gnu/classpath/tools/java2xhtml/.gitignore,
	* tools/gnu/classpath/tools/taglets/.gitignore,
	* vm/.gitignore,
	* vm/reference/.gitignore: Remove .gitignore files containing only
	entries duplicate to that in the parent or root .gitignore.
	* doc/.gitignore,
	* examples/.gitignore,
	* include/.gitignore,
	* lib/.gitignore,
	* native/.gitignore,
	* scripts/.gitignore,
	* tools/.gitignore,
	* tools/gnu/classpath/tools/gjdoc/expr/.gitignore: Remove entries
	duplicate to that contained in the project root .gitignore file
	(Makefile, Makefile.in, *.la, *.lo, .libs, .deps, .dirstamp).
	* native/jni/java-math/.gitignore,
	* native/jni/midi-alsa/.gitignore,
	* native/jni/midi-dssi/.gitignore,
	* native/jni/qt-peer/.gitignore:  Remove entries duplicate to that
	contained in /.gitignore or /native/.gitignore files.
  • Loading branch information
ivmai committed Jul 16, 2012
1 parent 78f20cb commit 6479ffe
Show file tree
Hide file tree
Showing 63 changed files with 97 additions and 264 deletions.
39 changes: 22 additions & 17 deletions .gitignore
@@ -1,23 +1,28 @@
aclocal.m4
compile
configure
config.guess
config.log
config.cache
config.status
config.sub
/aclocal.m4
/compile
/configure
/config.guess
/config.log
/config.cache
/config.status
/config.sub
config.h.in
config.h
libtool
ltmain.sh
/libtool
/ltmain.sh
Makefile
Makefile.in
stamp-h
stamp-h.in
autom4te*.cache
install
depcomp
install-sh
missing
mkinstalldirs
INSTALL
/autom4te*.cache
/install
/depcomp
/install-sh
/missing
/mkinstalldirs
/INSTALL
.deps/
.dirstamp
.libs/
*.la
*.lo
75 changes: 75 additions & 0 deletions ChangeLog
@@ -1,3 +1,78 @@
2012-06-10 Ivan Maidanski <ivmai@mail.ru>

* .gitignore: Add '/' prefix to file names existing (and to be
ignored) only in the project root folder (INSTALL, aclocal.m4,
autom4te*.cache, compile, config.cache, config.guess, config.log,
config.status, config.sub, configure, depcomp, install, install-sh,
libtool, ltmain.sh, missing, mkinstalldirs).
* .gitignore: Add file names common for many child .gitignore files
(.deps, .dirstamp, .libs, *.la, *.lo).
* compat/.gitignore,
* compat/java.net/.gitignore,
* doc/api/.gitignore,
* doc/www.gnu.org/announce/.gitignore,
* doc/www.gnu.org/cp-tools/.gitignore,
* doc/www.gnu.org/docs/.gitignore,
* doc/www.gnu.org/downloads/.gitignore,
* doc/www.gnu.org/events/.gitignore,
* doc/www.gnu.org/faq/.gitignore,
* external/.gitignore,
* external/jsr166/.gitignore,
* external/relaxngDatatype/.gitignore,
* external/sax/.gitignore,
* external/w3c_dom/.gitignore,
* gnu/test/.gitignore,
* native/fdlibm/.gitignore,
* native/jawt/.gitignore,
* native/jni/.gitignore,
* native/jni/classpath/.gitignore,
* native/jni/gconf-peer/.gitignore,
* native/jni/gstreamer-peer/.gitignore,
* native/jni/gtk-peer/.gitignore,
* native/jni/java-io/.gitignore,
* native/jni/java-lang/.gitignore,
* native/jni/java-net/.gitignore,
* native/jni/java-nio/.gitignore,
* native/jni/java-util/.gitignore,
* native/jni/native-lib/.gitignore,
* native/jni/xmlj/.gitignore,
* native/plugin/.gitignore,
* native/testsuite/.gitignore,
* native/vmi/.gitignore,
* resource/.gitignore,
* test/.gitignore,
* test/gnu.java.lang.reflect/.gitignore,
* test/java.io/.gitignore,
* test/java.lang.reflect/.gitignore,
* test/java.net/.gitignore,
* test/java.util/.gitignore,
* tools/gnu/classpath/tools/doclets/.gitignore,
* tools/gnu/classpath/tools/doclets/debugdoclet/.gitignore,
* tools/gnu/classpath/tools/doclets/htmldoclet/.gitignore,
* tools/gnu/classpath/tools/doclets/xmldoclet/.gitignore,
* tools/gnu/classpath/tools/doclets/xmldoclet/doctranslet/.gitignore,
* tools/gnu/classpath/tools/gjdoc/.gitignore,
* tools/gnu/classpath/tools/java2xhtml/.gitignore,
* tools/gnu/classpath/tools/taglets/.gitignore,
* vm/.gitignore,
* vm/reference/.gitignore: Remove .gitignore files containing only
entries duplicate to that in the parent or root .gitignore.
* doc/.gitignore,
* examples/.gitignore,
* include/.gitignore,
* lib/.gitignore,
* native/.gitignore,
* scripts/.gitignore,
* tools/.gitignore,
* tools/gnu/classpath/tools/gjdoc/expr/.gitignore: Remove entries
duplicate to that contained in the project root .gitignore file
(Makefile, Makefile.in, *.la, *.lo, .libs, .deps, .dirstamp).
* native/jni/java-math/.gitignore,
* native/jni/midi-alsa/.gitignore,
* native/jni/midi-dssi/.gitignore,
* native/jni/qt-peer/.gitignore: Remove entries duplicate to that
contained in /.gitignore or /native/.gitignore files.

2012-06-10 Ivan Maidanski <ivmai@mail.ru>

* compat/.gitignore,
Expand Down
1 change: 0 additions & 1 deletion compat/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion compat/java.net/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions doc/.gitignore
@@ -1,5 +1,3 @@
Makefile
Makefile.in
*.info
*.aux
*.cp
Expand Down
2 changes: 0 additions & 2 deletions doc/api/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion doc/www.gnu.org/announce/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion doc/www.gnu.org/cp-tools/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion doc/www.gnu.org/docs/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion doc/www.gnu.org/downloads/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion doc/www.gnu.org/events/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion doc/www.gnu.org/faq/.gitignore

This file was deleted.

3 changes: 0 additions & 3 deletions examples/.gitignore
@@ -1,6 +1,3 @@
Makefile
Makefile.in
examples.zip
Makefile.jawt
Makefile.java2d

2 changes: 0 additions & 2 deletions external/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions external/jsr166/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions external/relaxngDatatype/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions external/sax/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions external/w3c_dom/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion gnu/test/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions include/.gitignore
@@ -1,5 +1,3 @@
Makefile
Makefile.in
stamp-h
config.h
stamp-h.in
Expand Down
2 changes: 0 additions & 2 deletions lib/.gitignore
@@ -1,5 +1,3 @@
Makefile
Makefile.in
com
gnu
java
Expand Down
6 changes: 0 additions & 6 deletions native/.gitignore
@@ -1,8 +1,2 @@
*.o
*.a
*.lo
*.la
.libs
.deps
Makefile
Makefile.in
8 changes: 0 additions & 8 deletions native/fdlibm/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/jawt/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/jni/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/jni/classpath/.gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions native/jni/gconf-peer/.gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions native/jni/gstreamer-peer/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/jni/gtk-peer/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/jni/java-io/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/jni/java-lang/.gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions native/jni/java-math/.gitignore
@@ -1,7 +1 @@
.deps
.libs
*.lo
*.loT
*.la
Makefile
Makefile.in
8 changes: 0 additions & 8 deletions native/jni/java-net/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/jni/java-nio/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/jni/java-util/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/jni/midi-alsa/.gitignore
@@ -1,9 +1 @@
*.o
*.a
*.lo
*.la
.libs
.depsMakefile
Makefile.in
Makefile
.deps
8 changes: 0 additions & 8 deletions native/jni/midi-dssi/.gitignore
@@ -1,9 +1 @@
*.o
*.a
*.lo
*.la
.libs
.depsMakefile
Makefile.in
.deps
Makefile
8 changes: 0 additions & 8 deletions native/jni/native-lib/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/jni/qt-peer/.gitignore
@@ -1,9 +1 @@
*.o
*.a
*.lo
*.la
.libs
.deps
Makefile
Makefile.in
slotcallbacks.moc.h
8 changes: 0 additions & 8 deletions native/jni/xmlj/.gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions native/plugin/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/testsuite/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions native/vmi/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions resource/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions scripts/.gitignore
@@ -1,3 +1 @@
Makefile
Makefile.in
classpath.spec
1 change: 0 additions & 1 deletion test/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion test/gnu.java.lang.reflect/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion test/java.io/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion test/java.lang.reflect/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion test/java.net/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion test/java.util/.gitignore

This file was deleted.

0 comments on commit 6479ffe

Please sign in to comment.