GIT (Windows)

Aus Tutorials
Zur Navigation springen Zur Suche springen

Git Installation

https://gitforwindows.org/

Merge Tools

Meld

Installation

Installer von https://download.gnome.org/binaries/win32/meld/ herunterladen und ausführen.

Konfiguration

Meld als Merge-Tool für GIT festlegen:

git config --global merge.tool meld
git config --global diff.tool meld

GIT den Installationspfad für Meld mitteilen:

git config --global mergetool.meld.path "C:\Program Files (x86)\Meld\Meld.exe"

Pfad der Konfigurationsdatei befindet sich in C:\Users\<user>\.gitconfig

Links

https://stackoverflow.com/questions/14821358/git-mergetool-with-meld-on-windows


Zurück zu Windows