You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added last commits from the main english repos except the one with the
svg files
* Added commits from the main english repo up to the 15.10.2019
* Added commits #1316 and #1317 from original repo
* Added last commits from the main english repos
Added last commits from the main english repo up to 20.11.2019
Copy file name to clipboardExpand all lines: book/01-introduction/sections/help.asc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Diese Befehle sind nützlich, weil Sie sich die Hilfe jederzeit anzeigen lassen
21
21
Wenn die Hilfeseiten und dieses Buch nicht ausreichen und Sie persönliche Hilfe brauchen, können Sie den `#git` oder `#github` Kanal auf dem Freenode IRC Server probieren, der unter https://freenode.net zu finden ist.
22
22
Diese Kanäle sind in der Regel sehr gut besucht. Normalerweise findet sich unter den vielen Anwendern, die oft sehr viel Erfahrung mit Git haben, irgendjemand, der Ihnen weiterhelfen kann.(((IRC)))
23
23
24
-
Wenn Sie nicht die vollständige Manpage-Hilfe benötigen, sondern nur eine kurze Beschreibung der verfügbaren Optionen für einen Git-Befehl, können Sie auch in den kompakteren „Hilfeseiten“ mit der `-h` Option nachschauen, wie in:
24
+
Wenn Sie nicht die vollständige Manpage-Hilfe benötigen, sondern nur eine kurze Beschreibung der verfügbaren Optionen für einen Git-Befehl, können Sie auch in den kompakteren „Hilfeseiten“ mit der `-h` oder `--help` Option nachschauen, wie in:
Git will by default try to update *all* of your submodules when you run `git submodule update --remote` so if you have a lot of them, you may want to pass the name of just the submodule you want to try to update.
377
377
378
378
===== Pulling Upstream Changes from the Project Remote
379
-
Let's now step into the shoes of your collaborator, who has his own local clone of the the MainProject repository.
379
+
Let's now step into the shoes of your collaborator, who has his own local clone of the MainProject repository.
380
380
Simply executing `git pull` to get your newly committed changes is not enough:
381
381
382
382
[source,console]
@@ -952,7 +952,7 @@ Your branch is up-to-date with 'origin/master'.
952
952
nothing to commit, working tree clean
953
953
----
954
954
955
-
Using the the `--recurse-submodules` flag of `git checkout` can also be useful when you work on several branches in the superproject, each having your submodule pointing at different commits.
955
+
Using the `--recurse-submodules` flag of `git checkout` can also be useful when you work on several branches in the superproject, each having your submodule pointing at different commits.
956
956
Indeed, if you switch between branches that record the submodule at different commits, upon executing `git status` the submodule will appear as ``modified'', and indicate ``new commits''. That is because the submodule state is by default not carried over when switching branches.
957
957
958
958
This can be really confusing, so it's a good idea to always `git checkout --recurse-submodules` when your project has submodules.
Copy file name to clipboardExpand all lines: book/09-git-and-other-scms/sections/client-tfs.asc
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,13 @@ Libgit2 ist keine vollständige Implementierung von Git, weshalb git-tfs den Kom
20
20
Die Unterstützung von TFVC-Funktionen ist sehr ausgereift, da es Visual-Studio-Assemblys für Serveroperationen verwendet.
21
21
Das erfordert den Zugriff auf diese Assemblys und bedeutet, dass Sie eine aktuelle Version von Visual Studio (jede Edition seit Version 2010, einschließlich Express seit Version 2012) oder das Visual Studio SDK installieren müssen.
22
22
23
-
Git-tf (zu Hause unter https://gittf.codeplex.com[]) ist ein Java-Projekt und läuft als solches auf jedem Computer mit einer Java-Laufzeitumgebung.
23
+
[CAUTION]
24
+
----
25
+
Git-tf ist End-of-Life (EOL), es werden keine Aktualisierungen mehr geben.
26
+
Es wird auch nicht mehr von Microsoft unterstützt.
27
+
----
28
+
29
+
Git-tf (erreichbar unter https://gittf.codeplex.com[]) ist ein Java-Projekt und läuft als solches auf jedem Computer mit einer Java-Laufzeitumgebung.
24
30
Die Schnittstelle zu Git-Repositories erfolgt über JGit (eine Git-Implementierung von JVM (Java Virtual Machine)), was bedeutet, dass es praktisch keine Einschränkungen in Bezug auf die Git-Funktionen gibt.
25
31
Die Unterstützung für TFVC ist jedoch im Vergleich zu git-tfs begrenzt – es werden beispielsweise keine Branches unterstützt.
26
32
@@ -31,7 +37,7 @@ Wir werden die prinzipielle Verwendung der beiden in diesem Buch behandeln.
31
37
====
32
38
Sie benötigen Zugriff auf ein TFVC-basiertes Repository, um diesen Anweisungen zu folgen.
33
39
In der „freien Wildbahn“ sind sie nicht so zahlreich wie Git- oder Subversion-Repositorys, so dass Sie möglicherweise selbst eines erstellen müssen.
34
-
Codeplex (https://www.codeplex.com[]) oder Visual Studio Online (https://visualstudio.microsoft.com[]) sind beide dafür eine gute Wahl.
40
+
Codeplex (https://archive.codeplex.com/[]) oder Visual Studio Online (https://visualstudio.microsoft.com[]) sind beide dafür eine gute Wahl.
0 commit comments