[chronojump] Adds .gitignore with a first list of files.



commit dba2922878f8a9b51d9ba9c0460927a40f08b2bd
Author: Carles Pina i Estany <carles pina cat>
Date:   Mon Oct 17 11:38:00 2016 +0200

    Adds .gitignore with a first list of files.
    
    In Chronojump we are building it in the same directory as the source
    code. Then "git status" shows many "untracked files" (making it
    difficult to spot some files that should be added). This already ignores
    a good set of files.

 .gitignore |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f760367
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,36 @@
+# Files generated from Makefile.am
+Makefile
+Makefile.in
+
+# Files generated from *.po
+*.gmo
+
+# Other localization files generated from templates
+po/POTFILES
+po/stamp-it
+po/Makefile.in.in
+
+# Directories created at build or packaged time for the installation
+build-deb/
+build/
+bin/
+share/
+
+# libcesarplayer created files that we don't want to commit
+libcesarplayer/.deps/
+libcesarplayer/.libs/
+libcesarplayer/*.o
+libcesarplayer/*.lo
+libcesarplayer/*.la
+
+# autoconf files
+config.guess
+config.log
+config.status
+config.sub
+configure
+deb-pkg.sh
+depcomp
+
+# testing-stuff binaries
+testing-stuff/*.exe


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]