Fix unintentionally broad patterns in .gitignore
The patterns intended to match exactly weren't anchored. In particular, pattern lib make anything below src/lib/ invisible. Anchor them all.
This commit is contained in:
parent
70c03561bb
commit
a573f44960
1 changed files with 54 additions and 54 deletions
108
.gitignore
vendored
108
.gitignore
vendored
|
@ -1,64 +1,64 @@
|
||||||
# Generated files, keep in sync with Make.mk
|
# Generated files, keep in sync with Make.mk
|
||||||
# $(clean)
|
# $(clean)
|
||||||
*.[ado]
|
*.[ado]
|
||||||
src/util/empsched
|
/src/util/empsched
|
||||||
src/util/fairland
|
/src/util/fairland
|
||||||
src/util/files
|
/src/util/files
|
||||||
src/util/pconfig
|
/src/util/pconfig
|
||||||
src/client/empire
|
/src/client/empire
|
||||||
src/server/emp_server
|
/src/server/emp_server
|
||||||
info/Combat.t
|
/info/Combat.t
|
||||||
info/Commerce.t
|
/info/Commerce.t
|
||||||
info/Commodities.t
|
/info/Commodities.t
|
||||||
info/Communication.t
|
/info/Communication.t
|
||||||
info/Deity.t
|
/info/Deity.t
|
||||||
info/Detection.t
|
/info/Detection.t
|
||||||
info/Diplomacy.t
|
/info/Diplomacy.t
|
||||||
info/Distribution.t
|
/info/Distribution.t
|
||||||
info/Introduction.t
|
/info/Introduction.t
|
||||||
info/LandUnits.t
|
/info/LandUnits.t
|
||||||
info/Loans.t
|
/info/Loans.t
|
||||||
info/Maps.t
|
/info/Maps.t
|
||||||
info/Nations.t
|
/info/Nations.t
|
||||||
info/Nukes.t
|
/info/Nukes.t
|
||||||
info/Obsolete.t
|
/info/Obsolete.t
|
||||||
info/Occupation.t
|
/info/Occupation.t
|
||||||
info/Planes.t
|
/info/Planes.t
|
||||||
info/Playing.t
|
/info/Playing.t
|
||||||
info/Populace.t
|
/info/Populace.t
|
||||||
info/Producing.t
|
/info/Producing.t
|
||||||
info/Sectors.t
|
/info/Sectors.t
|
||||||
info/Server.t
|
/info/Server.t
|
||||||
info/Ships.t
|
/info/Ships.t
|
||||||
info/Transportation.t
|
/info/Transportation.t
|
||||||
info/Updates.t
|
/info/Updates.t
|
||||||
info/TOP.t
|
/info/TOP.t
|
||||||
# $(distclean)
|
# $(distclean)
|
||||||
config.h
|
/config.h
|
||||||
config.log
|
/config.log
|
||||||
config.status
|
/config.status
|
||||||
info.html
|
/info.html
|
||||||
info.nr
|
/info.nr
|
||||||
lib
|
/lib
|
||||||
stamp-h
|
/stamp-h
|
||||||
GNUmakefile
|
/GNUmakefile
|
||||||
src/client/Makefile
|
/src/client/Makefile
|
||||||
src/client/ipglob.c
|
/src/client/ipglob.c
|
||||||
src/lib/global/path.c
|
/src/lib/global/path.c
|
||||||
autom4te.cache
|
/autom4te.cache
|
||||||
src/client/autom4te.cache
|
/src/client/autom4te.cache
|
||||||
subjects.mk
|
/subjects.mk
|
||||||
# $(src_distgen)
|
# $(src_distgen)
|
||||||
aclocal.m4
|
/aclocal.m4
|
||||||
config.h.in
|
/config.h.in
|
||||||
configure
|
/configure
|
||||||
stamp-h.in
|
/stamp-h.in
|
||||||
# $(bld_distgen)
|
# $(bld_distgen)
|
||||||
sources.mk
|
/sources.mk
|
||||||
# $(cli_distgen)
|
# $(cli_distgen)
|
||||||
src/client/aclocal.m4
|
/src/client/aclocal.m4
|
||||||
src/client/config.h.in
|
/src/client/config.h.in
|
||||||
src/client/configure
|
/src/client/configure
|
||||||
|
|
||||||
# Generic junk
|
# Generic junk
|
||||||
*.orig
|
*.orig
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue