Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.
Auszug
hiddentrue

Nuclos Git: gitconfig, autocrlf, CRLF, safecrlf, push.default, core.longpaths, nuclet export, line endings.

globe with meridians Language: Deutsch · English

open book Git

Git base configuration for Nuclos – .gitconfig, autocrlf/CRLF pitfall and long file names on Windows.

Status
colourGrey
titleReferenz
Status
colourBlue
titleDeveloper
Status
colourGreen
titleUpdated: Jul 2026
Status
colourGrey
titleapplies to Nuclos 4.2026.x

Panel
bgColor#F4F5F7

On this page

Inhalt
maxLevel2
minLevel2

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.

Codeblock
languageini
[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
Warnung
titleCRLF pitfall

Windows users: autocrlf = true causes exported nuclet files containing source code (data sources, rules) to get Windows line endings (CRLF). This can cause problems when importing on non-Windows systems – consider autocrlf = input.

Info
titleLong file names

For „Filename too long“ on Windows:

Codeblock
languagebash
git config --system core.longpaths true

Related pages

gear Git conflict management


Merge/conflicts.

Open →