mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 04:02:25 +00:00
Add .git configuration files to enlistment root.
This commit is contained in:
parent
f9dc858d29
commit
c64a75bd78
3 changed files with 68 additions and 0 deletions
34
.gitattributes
vendored
Executable file
34
.gitattributes
vendored
Executable file
|
|
@ -0,0 +1,34 @@
|
||||||
|
# Cygwin git and github for windows differ in their eol convention: Github for
|
||||||
|
# windows uses crlf, but cygwin git uses LF.
|
||||||
|
# Since we want the same enlistment to work both ways, we need to specify and stick
|
||||||
|
# with end of line convention for all files.
|
||||||
|
# Therefore we choose LF for all files except windows command scripts.
|
||||||
|
|
||||||
|
* text=auto
|
||||||
|
|
||||||
|
*.md text eol=lf
|
||||||
|
*.c text eol=lf
|
||||||
|
*.h text eol=lf
|
||||||
|
*.Mod text eol=lf
|
||||||
|
*.mod text eol=lf
|
||||||
|
*.make text eol=lf
|
||||||
|
*makefile text eol=lf
|
||||||
|
*.sh text eol=lf
|
||||||
|
.git* text eol=lf
|
||||||
|
|
||||||
|
*.cmd text eol=crlf
|
||||||
|
|
||||||
|
|
||||||
|
# Symbol files are binaries
|
||||||
|
*.sym binary
|
||||||
|
|
||||||
|
# Other binaries (these are not normally checked in.)
|
||||||
|
*.o binary
|
||||||
|
*.obj binary
|
||||||
|
*stackdump binary
|
||||||
|
*exe binary
|
||||||
|
|
||||||
|
# Provide type information to improve block annotation in git diff output.
|
||||||
|
*.Mod diff=pascal
|
||||||
|
*.c diff=cpp
|
||||||
|
*.h diff=cpp
|
||||||
10
.gitconfig
Executable file
10
.gitconfig
Executable file
|
|
@ -0,0 +1,10 @@
|
||||||
|
[core]
|
||||||
|
repositoryformatversion = 0
|
||||||
|
filemode = true
|
||||||
|
bare = false
|
||||||
|
logallrefupdates = true
|
||||||
|
ignorecase = true
|
||||||
|
autocrlf = true
|
||||||
|
# safecrlf = false
|
||||||
|
[push]
|
||||||
|
default = simple
|
||||||
24
.gitignore
vendored
Executable file
24
.gitignore
vendored
Executable file
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*.sublime-*
|
||||||
|
/Configuration.Mod
|
||||||
|
/Configuration.Make
|
||||||
|
/build/*
|
||||||
|
/*.exe
|
||||||
|
/*.obj
|
||||||
|
/*.o
|
||||||
|
/*.lib
|
||||||
|
/*.map
|
||||||
|
/olang
|
||||||
|
/src/test/**/*.exe
|
||||||
|
/src/test/**/*.c
|
||||||
|
/src/test/**/*.h
|
||||||
|
/src/test/**/*.o
|
||||||
|
/src/test/**/*.obj
|
||||||
|
/src/test/**/*.sym
|
||||||
|
/src/test/**/*.stackdump
|
||||||
|
/src/test/confidence/**/result
|
||||||
|
/.DS_store
|
||||||
|
**/.DS_store
|
||||||
|
**/*.dSYM
|
||||||
|
**/.tmp.*
|
||||||
|
/*.pdb
|
||||||
|
/*.ilk
|
||||||
Loading…
Add table
Add a link
Reference in a new issue