Make git ignore generated files and bak files, patch mostly by Mike Frysinger.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4606 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
fde9d4c189
commit
01a143474b
|
@ -1,9 +1,15 @@
|
||||||
|
*~
|
||||||
|
*.bak
|
||||||
*.o
|
*.o
|
||||||
.deps
|
.deps
|
||||||
.libs
|
.libs
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
|
|
||||||
|
core
|
||||||
|
.gdb_history
|
||||||
|
.gdbinit
|
||||||
|
|
||||||
/ABOUT-NLS
|
/ABOUT-NLS
|
||||||
/INSTALL
|
/INSTALL
|
||||||
/aclocal.m4
|
/aclocal.m4
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
* src/Makefile.am - Rename 'INCLUDES' to 'AM_CPPFLAGS', since
|
* src/Makefile.am - Rename 'INCLUDES' to 'AM_CPPFLAGS', since
|
||||||
Automake changed the naming of these a while ago, and at least
|
Automake changed the naming of these a while ago, and at least
|
||||||
version 1.13 now starts warning about it.
|
version 1.13 now starts warning about it.
|
||||||
|
* .gitignore - Ignore generated files (and bak files).
|
||||||
|
|
||||||
2014-02-25 Benno Schulenberg <bensberg@justemail.net>
|
2014-02-25 Benno Schulenberg <bensberg@justemail.net>
|
||||||
* src/files.c (write_lockfile, do_lockfile) - Fix a typo reported
|
* src/files.c (write_lockfile, do_lockfile) - Fix a typo reported
|
||||||
|
|
Loading…
Reference in New Issue