Skip to content

Commit

Permalink
Improving .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Spanti (RyDroid) committed Aug 8, 2016
1 parent 9688f34 commit ab1d761
Showing 1 changed file with 63 additions and 27 deletions.
90 changes: 63 additions & 27 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,17 @@
# Temp files
*~
*.swp
/INSTALL
.deps/
.libs/
/aclocal.m4
/autom4te.cache
/config.guess
/config.h.in
/json_config.h
/compile
/config.h
/config.log
/config.status
/config.sub
/configure
/depcomp
/doc
/install-sh
/json.pc
/json-c.pc
/json-c-uninstalled.pc
/libtool
/ltmain.sh
/Makefile
/Makefile.in
/missing
/stamp-h1
/stamp-h2
*.bak
*.backup
\#*
.\#*
*\#
*.sav
*.save
*.autosav
*.autosave

# Tests
/test-driver
/tests/Makefile
/tests/Makefile.in
Expand All @@ -51,11 +36,62 @@
/tests/*.vg.out
/tests/*.log
/tests/*.trs

# Generated folders
/Debug
/Release
/*/Debug
/*/Release

# Generated binaries
*.lo
*.o
/libjson-c.la
/libjson.la

# Archives
*.zip
*.tar.*
*.tgz
*.gz
*.bz2
*.xz
*.lz
*.lzma
*.7z
*.dll
*.deb
*.rpm
*.apk
*.exe
*.msi
*.dmg
*.ipa

/INSTALL
.deps/
.libs/
/aclocal.m4
/autom4te.cache
/config.guess
/config.h.in
/json_config.h
/compile
/config.h
/config.log
/config.status
/config.sub
/configure
/depcomp
/doc
/install-sh
/json.pc
/json-c.pc
/json-c-uninstalled.pc
/libtool
/ltmain.sh
/Makefile
/Makefile.in
/missing
/stamp-h1
/stamp-h2

0 comments on commit ab1d761

Please sign in to comment.