Versionsverwaltung (VCS) unter Windows: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(13 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
== Git == | |||
=== Download === | |||
[https://git-scm.com/download/win https://git-scm.com/download/win] | |||
=== Konfiguration === | |||
==== Standard Editor ändern ==== | |||
Um den Standardeditor auf ''Notepad++'' zu ändern einfach ''Git CMD'' starten und folgenden Befehl (Pfad ändern) ausführen: | |||
<pre> | |||
git config --global core.editor "'C:\PrgTools\bin\PortableApps\PortableApps\Notepad++Portable\Notepad++Portable.exe' -multiInst -nosession" | |||
</pre> | |||
==== HOME-Verzeichnis ändern ==== | |||
Die Datei | |||
<pre> | |||
C:\Users\<user name>\Appdata\local\Programs\Git\etc\profile | |||
</pre> | |||
bearbeiten und folgende Zeile hinzufügen (bzw. editieren, falls vorhanden): | |||
<pre> | |||
HOME=/c/Users/$USERNAME | |||
</pre> | |||
==== Links ==== | |||
[https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup] | |||
=== Probleme === | |||
==== Unlink of file '.git/objects/pack/pack-XXXX.pack' failed. Should I try again? (y/n) ==== | |||
Dieser Fehler wird manchmal in der Git Bash bei Ausführung von | |||
<pre> | |||
git pull | |||
</pre> | |||
angezeigt. | |||
'''Lösung:''' Alle IDEs (z.B. Eclipse) schließen und in der Git-Bash das Kommando | |||
<pre> | |||
git gc | |||
</pre> | |||
aufrufen und nochmals probieren. | |||
== Subversion == | == Subversion == | ||
=== | === TortoiseSVN === | ||
==== Download ==== | ==== Download ==== | ||
Zeile 7: | Zeile 62: | ||
[https://tortoisesvn.net/downloads.html https://tortoisesvn.net/downloads.html] | [https://tortoisesvn.net/downloads.html https://tortoisesvn.net/downloads.html] | ||
==== Installation ==== | |||
Während der Installation müssen aich die ''command line client tools'' ausgewählt werden (werden standardmäßig nicht installiert): | |||
[[Datei:SetupTortoiseSVN.jpg]] | |||
Zurück zu [[Windows#Konfiguration|Windows]] | Zurück zu [[Windows#Konfiguration|Windows]] |
Aktuelle Version vom 4. November 2019, 14:54 Uhr
Git
Download
https://git-scm.com/download/win
Konfiguration
Standard Editor ändern
Um den Standardeditor auf Notepad++ zu ändern einfach Git CMD starten und folgenden Befehl (Pfad ändern) ausführen:
git config --global core.editor "'C:\PrgTools\bin\PortableApps\PortableApps\Notepad++Portable\Notepad++Portable.exe' -multiInst -nosession"
HOME-Verzeichnis ändern
Die Datei
C:\Users\<user name>\Appdata\local\Programs\Git\etc\profile
bearbeiten und folgende Zeile hinzufügen (bzw. editieren, falls vorhanden):
HOME=/c/Users/$USERNAME
Links
https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup
Probleme
Unlink of file '.git/objects/pack/pack-XXXX.pack' failed. Should I try again? (y/n)
Dieser Fehler wird manchmal in der Git Bash bei Ausführung von
git pull
angezeigt.
Lösung: Alle IDEs (z.B. Eclipse) schließen und in der Git-Bash das Kommando
git gc
aufrufen und nochmals probieren.
Subversion
TortoiseSVN
Download
https://tortoisesvn.net/downloads.html
Installation
Während der Installation müssen aich die command line client tools ausgewählt werden (werden standardmäßig nicht installiert):
Zurück zu Windows