Skip to content

Commit c966751

Browse files
committed
dulwich.asc übersetzt
1 parent bb504b2 commit c966751

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

book/B-embedding-git/sections/dulwich.asc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
=== Dulwich
22

33
(((Dulwich)))(((Python)))
4-
There is also a pure-Python Git implementation - Dulwich.
5-
The project is hosted under https://www.dulwich.io/
6-
It aims to provide an interface to git repositories (both local and remote) that doesn't call out to git directly but instead uses pure Python.
7-
It has an optional C extensions though, that significantly improve the performance.
4+
Es gibt auch eine pure Python-Implementierung in Git Dulwich.
5+
Das Projekt wird unter https://www.dulwich.io/ gehostet.
6+
Es zielt darauf ab, eine Schnittstelle zu Git-Repositorys (lokal und remote) bereitzustellen, die nicht direkt Git aufruft, sondern stattdessen reines Python verwendet.
7+
Es hat dennoch eine optionale C-Erweiterung, die die Leistung erheblich verbessert.
88

9-
Dulwich follows git design and separate two basic levels of API: plumbing and porcelain.
9+
Dulwich folgt dem Git-Design und trennt die beiden grundlegenden API-Bereiche: Basis- und Standardbefehle (engl. plumbing and porcelain).
1010

11-
Here is an example of using the lower level API to access the commit message of the last commit:
11+
Das folgende Beispiel zeigt die API der low-level (Basis-)Ebene, um auf die Commit-Beschreibung des letzten Commits zuzugreifen:
1212

1313
[source, python]
1414
-----
@@ -25,7 +25,7 @@ c.message
2525
# 'Add note about encoding.\n'
2626
-----
2727

28-
To print a commit log using high-level porcelain API, one can use:
28+
Zum Drucken eines Commit-Protokolls mit der high-level Standard-API kann man folgendes verwenden:
2929

3030
[source, python]
3131
-----
@@ -38,7 +38,7 @@ porcelain.log('.', max_entries=1)
3838
-----
3939

4040

41-
==== Further Reading
41+
==== Weiterführende Informationen
4242

43-
* The official API documentation is available at https://www.dulwich.io/apidocs/dulwich.html[]
44-
* Official tutorial at https://www.dulwich.io/docs/tutorial[] has many examples of how to do specific tasks with Dulwich
43+
* Die offizielle API-Dokumentation ist unter https://www.dulwich.io/apidocs/dulwich.html[] verfügbar.
44+
* Das offizielle Tutorial bei https://www.dulwich.io/docs/tutorial[] enthält viele Beispiele dafür, wie bestimmte Aufgaben mit Dulwich erledigt werden können.

status.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"B-embedding-git": {
123123
"1-embedding-git.asc": 100,
124124
"sections/command-line.asc": 100,
125-
"sections/jgit.asc": 0,
125+
"sections/jgit.asc": 100,
126126
"sections/libgit2.asc": 100
127127
},
128128
"C-git-commands": {

0 commit comments

Comments
 (0)