From: Benno Schulenberg Date: Tue, 25 Feb 2014 20:18:33 +0000 (+0000) Subject: Make git ignore generated files and bak files, patch mostly by Mike Frysinger. X-Git-Tag: v2.3.3~324 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=01a143474bd4b5640c37fcab996717d9317b9cfc;p=nano.git 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-d3aeb78583b8 --- diff --git a/.gitignore b/.gitignore index 21b165de..daa97481 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,15 @@ +*~ +*.bak *.o .deps .libs Makefile Makefile.in +core +.gdb_history +.gdbinit + /ABOUT-NLS /INSTALL /aclocal.m4 diff --git a/ChangeLog b/ChangeLog index 0b5ce5de..83413cc7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * src/Makefile.am - Rename 'INCLUDES' to 'AM_CPPFLAGS', since Automake changed the naming of these a while ago, and at least version 1.13 now starts warning about it. + * .gitignore - Ignore generated files (and bak files). 2014-02-25 Benno Schulenberg * src/files.c (write_lockfile, do_lockfile) - Fix a typo reported