diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2018-07-28 09:16:12 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2018-07-28 09:16:12 +0000 |
| commit | cdb7a68b8fb5dc6df95c24d8a6eccbc5d1839646 (patch) | |
| tree | 29c539dcf1600eeab98c2db5666ebb2306d7a8c9 /.gitattributes | |
| parent | 29981da5ca1cd21098c66d79c27772f3493b9324 (diff) | |
Add git attributes file.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12995 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to '.gitattributes')
| -rw-r--r-- | .gitattributes | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..212958582 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,56 @@ +# +# Git attributes for special files +# +# files not mentioned here are either text files +# or their types are "guessed" properly by Git +# +# todo (migration from svn to git): +# +# - do we need to define Git attributes for source and text files? +# - if yes, how to migrate "svn:eol-style native" to Git? +# - which attributes do we need for fluid (.fl) files? +# - what about "svn:keywords id" (+ author date revision)? +# + +# files that will not be exported in source tarballs + +makesrcdist export-ignore eol=lf +.gitattributes export-ignore +.gitignore export-ignore + +# fluid files (eol=lf or text?) + +#*FIXME* *.fl eol=lf + +# shell scripts etc. with Unix line endings (lf) + +*.ac eol=lf +*.desktop eol=lf +*.sh eol=lf + +documentation/make_pdf eol=lf +misc/config.guess eol=lf +misc/config.sub eol=lf +misc/update_config_scripts eol=lf + +# files with Windows line endings (crlf) + +*.rc eol=crlf + +ide/AndroidStudio3/gradlew.rename_to_bat eol=crlf + +# binary files + +*.ico binary +*.icns binary +*.jar binary +*.png binary +*.jpg binary +*.ttf binary +*.xcf binary +*.xcf_gz binary + +# image files that consist of ASCII text + +# *.xbm text +# *.xpm text |
