GIT (Windows): Unterschied zwischen den Versionen
		
		
		
		
		
		Zur Navigation springen
		Zur Suche springen
		
				
		
		
	
| Zeile 12: | Zeile 12: | ||
==== Konfiguration ====  | ==== Konfiguration ====  | ||
'''Meld''' als Merge-Tool für GIT festlegen:  | |||
<pre>  | <pre>  | ||
git config --global merge.tool meld  | |||
git config --global diff.tool meld  | |||
</pre>  | |||
GIT den Installationspfad für '''Meld''' mitteilen:  | |||
<pre>  | |||
git config --global mergetool.meld.path 'C:\Program Files (x86)\Meld\Meld.exe'  | |||
</pre>  | </pre>  | ||
Zurück zu [[Windows#Programme|Windows]]  | Zurück zu [[Windows#Programme|Windows]]  | ||
Version vom 10. Juni 2019, 11:41 Uhr
Git Installation
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'
Zurück zu Windows