Merged in f5soh/librepilot/laurent/LP-48_French_Translations_update_rel-15.09 (pull...
[librepilot.git] / .gitattributes
blob9b4c80545a57648c5b58f8d13cf6bd7d4259d9f1
2 # Line endings normalization: http://wiki.openpilot.org/display/Doc/Coding+Style
3 # You need at least git 1.7.2 for this to work (previous versions ignore text and eol attributes).
5 # To merge your old branch with new normalized version use the following git option:
6 #   git merge ... -X renormalize
8 # To reformat your local branch completely make sure you have committed all local changes first.
9 # Then use the following bash commands:
11 # Minimal normalization:
12 #   git rm --cached -r .
13 #   git reset --hard
14 #   git add .
15 #   git commit -m "Normalize line endings"
17 # Or full normalization (don't do that on Windows, it breaks file modes):
18 #   git rm --cached -r .
19 #   git diff --cached --name-only -z | xargs -0 git add
20 #   git commit -m "Normalize line endings"
21 #   git ls-files -z | xargs -0 rm
22 #   git checkout .
25 # Set default behaviour (do not convert line endings regardless of local git core settings)
26 *               -text
28 # All *.txt files in the root should be Windows-readable (CRLF)
29 /*.txt          text eol=crlf
31 # Root Makefile has LF line endings
32 /Makefile       text eol=lf
34 # More attributes are defined in per-directory .gitattributes which override this file