Nuclos Git: gitconfig, autocrlf, CRLF, safecrlf, push.default, core.longpaths, nuclet export, line endings. |
Language: Deutsch · English
Git base configuration for Nuclos – .gitconfig, autocrlf/CRLF pitfall and long file names on Windows.
On this page |
Recommended base configuration for working with the Nuclos repositories. Create a .gitconfig file in your home directory and adapt it to your preferences (especially push.default). A full overview is provided by man git-config.
[user]
name = Vorname Nachname
email = you@example.com
[core]
editor = kate
safecrlf = true
autocrlf = input ## Unix/Mac
# autocrlf = true ## Windows
# longpaths = true ## Windows, bei "Filename too long"
[push]
default = simple
[merge]
tool = kdiff3
[color]
ui = auto |
Windows users: |
For „Filename too long“ on Windows:
|