Skip to content

Commit 64f7e6d

Browse files
authored
Merge pull request #45 from max123kl/chapter-07_1
Chapter 07-1
2 parents 5b2ce49 + 82de816 commit 64f7e6d

File tree

7 files changed

+243
-242
lines changed

7 files changed

+243
-242
lines changed

C-git-commands.asc

Lines changed: 123 additions & 123 deletions
Large diffs are not rendered by default.

book/07-git-tools/sections/credentials.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[[_credential_caching]]
2-
=== Credential Storage
2+
=== Anmeldeinformationen speichern
33

44
(((credentials)))
55
(((git commands, credential)))

book/07-git-tools/sections/revision-selection.asc

Lines changed: 106 additions & 105 deletions
Large diffs are not rendered by default.

book/07-git-tools/sections/stashing-cleaning.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ Dropped refs/stash@{0} (29d385a81d163dfd45a452a2ce816487a6b8b014)
224224
This is a nice shortcut to recover stashed work easily and work on it in a new branch.
225225

226226
[[_git_clean]]
227-
==== Cleaning your Working Directory
227+
==== Bereinigung des Arbeitsverzeichnisses
228228

229229
Finally, you may not want to stash some work or files in your working directory, but simply get rid of them; that's what the `git clean` command is for.
230230

book/08-customizing-git/sections/config.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[[_git_config]]
2-
=== Git Configuration
2+
=== Git Konfiguration
33

44
(((git commands, config)))
55
Wie Sie in Kapitel 1, <<ch01-getting-started#ch01-getting-started,Erste Schritte>> bereits kurz gelesen haben, können Sie die Git-Konfigurationseinstellungen mit dem Befehl `git config` anpassen.

ch07-git-tools.asc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[[ch07-git-tools]]
22
== Git Tools
33

4-
By now, you've learned most of the day-to-day commands and workflows that you need to manage or maintain a Git repository for your source code control.
5-
You've accomplished the basic tasks of tracking and committing files, and you've harnessed the power of the staging area and lightweight topic branching and merging.
4+
Inzwischen haben Sie die meisten der gängigen Befehle und Workflows kennen gelernt. Sie benötigen sie, um ein Git-Repository für Ihre Quellcode-Kontrolle zu verwalten oder zu pflegen.
5+
Sie haben die grundlegenden Aufgaben des Tracking und Commitens von Dateien gelöst und Sie haben die Leistungsfähigkeit der Staging Area und der einfachen Branching- und Merging-Funktionen von Topics-Branches genutzt.
66

7-
Now you'll explore a number of very powerful things that Git can do that you may not necessarily use on a day-to-day basis but that you may need at some point.
7+
Jetzt werden Sie eine Reihe von sehr nützlichen Anwendungen entdecken, die Git ausführen kann. Sie werden diese nicht unbedingt im Alltag einsetzen müssen, aber vielleicht irgendwann einmal benötigen.
88

99
include::book/07-git-tools/sections/revision-selection.asc[]
1010

@@ -34,9 +34,9 @@ include::book/07-git-tools/sections/replace.asc[]
3434

3535
include::book/07-git-tools/sections/credentials.asc[]
3636

37-
=== Summary
37+
=== Zusammenfassung
3838

39-
You've seen a number of advanced tools that allow you to manipulate your commits and staging area more precisely.
40-
When you notice issues, you should be able to easily figure out what commit introduced them, when, and by whom.
41-
If you want to use subprojects in your project, you've learned how to accommodate those needs.
42-
At this point, you should be able to do most of the things in Git that you'll need on the command line day to day and feel comfortable doing so.
39+
Sie haben eine Reihe von fortschrittlichen Tools kennengelernt, mit denen Sie Ihre Commits und die Staging-Area präziser manipulieren können.
40+
Wenn Sie Probleme bemerken, sollten Sie in der Lage sein, leicht herauszufinden, was, wann und von wem der Commit eingebracht wurde.
41+
Wenn Sie Teilprojekte in Ihrem Projekt verwenden möchten, haben Sie gelernt, wie Sie deren Anforderungen erfüllen können.
42+
An diesem Punkt sollten Sie auf der Kommandozeile die meisten der tagtäglichen Aufgaben in Git erledigen können und Sie sollten sich dabei sicher fühlen.

status.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"sections/5-scripting.asc": 100
6060
},
6161
"07-git-tools": {
62-
"1-git-tools.asc": 0,
62+
"1-git-tools.asc": 100,
6363
"sections/advanced-merging.asc": 0,
6464
"sections/bundling.asc": 0,
6565
"sections/credentials.asc": 0,
@@ -68,7 +68,7 @@
6868
"sections/replace.asc": 0,
6969
"sections/rerere.asc": 0,
7070
"sections/reset.asc": 0,
71-
"sections/revision-selection.asc": 0,
71+
"sections/revision-selection.asc": 100,
7272
"sections/rewriting-history.asc": 0,
7373
"sections/searching.asc": 0,
7474
"sections/signing.asc": 0,
@@ -123,7 +123,7 @@
123123
"sections/libgit2.asc": 0
124124
},
125125
"C-git-commands": {
126-
"1-git-commands.asc": 0
126+
"1-git-commands.asc": 50
127127
}
128128
}
129129
}

0 commit comments

Comments
 (0)