Skip to content

Commit

Permalink
Update gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
izissise committed Jan 11, 2014
1 parent 2ff53ea commit 566249f
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 16 deletions.
28 changes: 28 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto

# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.

*.c text
*.h text
*.cpp text
*.hpp text
*.cbp text
*.txt text
*.vert text
*.frag text

# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf

# Denote all files that are truly binary and should not be modified.

*.bmp binary
*.png binary
*.jpg binary
*.dll binary
*.so binary
*.a binary
*.exe
*.o
51 changes: 35 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,37 @@
# Object files
Thumbs.db
.fuse_hidden*
*~
*#
#*#
*.out
*.o
*.ko

# Libraries
*.lib
*.a

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
.directory
*.cbp
*.layout*
*.layout
*.depend*
*.depend
*.exe
*.out
*.app
*.pdb
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.sln.docstates
*.tlb
*.tlh
*.bak
*.cache
*.ilk
*.log
[Bb]in
[Dd]ebug*/
*.sbr
obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*

0 comments on commit 566249f

Please sign in to comment.