finished clone.txt
[gitmagic/gitmagic.git] / de / pot / clone.po
blob701f5e0ddc0739fbdeda476cdf4beb5f9e892ce3
1 # Git Magic - A guide to using Git
2 # This file is distributed under the GNU GENERAL PUBLIC LICENSE Version 3.
3 # Benn Lynn <benlynn@gmail.com>, 2007.
4 # Armin Stebich <armin@lordofbikes.de>, 2010.
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: Git Magic deutsch\n"
9 "Report-Msgid-Bugs-To: bennlynn@gmail.com\n"
10 "POT-Creation-Date: 2010-10-30 08:21+0300\n"
11 "PO-Revision-Date: 2010-11-03 00:44+0100\n"
12 "Last-Translator: Armin Stebich <armin@lordofbikes.de>\n"
13 "Language-Team: DE <gitmagic@lordofbikes.de>\n"
14 "Language: de\n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: UTF-8\n"
18 "Plural-Forms: \n"
20 #. type: Plain text
21 #: ../en/clone.txt:2
22 msgid "== Cloning Around =="
23 msgstr "== Rund ums 'Clonen' =="
25 #. type: Plain text
26 #: ../en/clone.txt:4
27 msgid ""
28 "In older version control systems, checkout is the standard operation to get "
29 "files. You retrieve a bunch of files in a particular saved state."
30 msgstr ""
31 "In älteren Versionsverwaltungssystemen ist 'checkout' die Standardoperation "
32 "um Dateien zu bekommen. Du bekommst einen Haufen Dateien eines bestimmten "
33 "Sicherungsstands."
35 #. type: Plain text
36 #: ../en/clone.txt:6
37 msgid ""
38 "In Git and other distributed version control systems, cloning is the "
39 "standard operation. To get files, you create a 'clone' of the entire "
40 "repository. In other words, you practically mirror the central server. "
41 "Anything the main repository can do, you can do."
42 msgstr ""
43 "In Git und anderen verteilten Versionsverwaltungssystemen ist 'clone' die "
44 "Standardaktion. Um Dateien zu bekommen, erstellst du einen 'Clone' des "
45 "gesamten 'Repository'. Oder anders gesagt, du spiegelst den zentralen "
46 "Server. Alles, was man mit dem zentralen 'Repository' tun kann, kannst du "
47 "auch mit deinem 'Clone' tun."
49 #. type: Plain text
50 #: ../en/clone.txt:8
51 msgid "=== Sync Computers ==="
52 msgstr "=== Computer synchronisieren ==="
54 #. type: Plain text
55 #: ../en/clone.txt:10
56 msgid ""
57 "I can tolerate making tarballs or using *rsync* for backups and basic "
58 "syncing. But sometimes I edit on my laptop, other times on my desktop, and "
59 "the two may not have talked to each other in between."
60 msgstr ""
61 "Es ist akzeptabel, für Datensicherungen und einfaches Synchronisieren, mit "
62 "'tarball' Archiven oder *rsync* zu arbeiten. Aber manchmal arbeite ich an "
63 "meinem Laptop, dann an meinem Desktop-PC und die beiden haben sich "
64 "inzwischen nicht austauschen können."
66 #. type: Plain text
67 #: ../en/clone.txt:12
68 msgid ""
69 "Initialize a Git repository and commit your files on one machine. Then on "
70 "the other:"
71 msgstr ""
72 "Erstelle ein Git 'Repository' und 'commite' deine Dateien auf dem einen "
73 "Rechner. Dann auf dem anderen:"
75 #. type: Plain text
76 #: ../en/clone.txt:14
77 #, no-wrap
78 msgid " $ git clone other.computer:/path/to/files\n"
79 msgstr " $ git clone anderer.computer:/pfad/zu/dateien\n"
81 #. type: Plain text
82 #: ../en/clone.txt:16
83 msgid "to create a second copy of the files and Git repository. From now on,"
84 msgstr ""
85 "um eine zweite Kopie der Dateien und des Git 'Repository' zu erstellen. Von "
86 "jetzt an wird"
88 #. type: Plain text
89 #: ../en/clone.txt:19
90 #, no-wrap
91 msgid ""
92 " $ git commit -a\n"
93 " $ git pull other.computer:/path/to/files HEAD\n"
94 msgstr ""
95 " $ git commit -a\n"
96 " $ git pull anderer.computer:/pfad/zu/dateien HEAD\n"
98 #. type: Plain text
99 #: ../en/clone.txt:21
100 msgid ""
101 "will 'pull' in the state of the files on the other computer into the one "
102 "you're working on. If you've recently made conflicting edits in the same "
103 "file, Git will let you know and you should commit again after resolving them."
104 msgstr ""
105 "den Zustand der Dateien des anderen Computer auf den übertragen, an dem du "
106 "gerade arbeitest. Solltest du kürzlich konkurrierende Änderungen an der "
107 "selben Datei vorgenommen haben, lässt Git dich das wissen und musst erneut "
108 "'commiten' nachdem du die Konflikte aufgelöst hast."
110 #. type: Plain text
111 #: ../en/clone.txt:23
112 msgid "=== Classic Source Control ==="
113 msgstr "=== Klassische Quellcodeverwaltung ==="
115 #. type: Plain text
116 #: ../en/clone.txt:25
117 msgid "Initialize a Git repository for your files:"
118 msgstr "Erstelle ein Git 'Repository' für deine Dateien:"
120 #. type: Plain text
121 #: ../en/clone.txt:29 ../en/clone.txt:138
122 #, no-wrap
123 msgid ""
124 " $ git init\n"
125 " $ git add .\n"
126 " $ git commit -m \"Initial commit\"\n"
127 msgstr ""
128 " $ git init\n"
129 " $ git add .\n"
130 " $ git commit -m \"Erster Commit\"\n"
132 #. type: Plain text
133 #: ../en/clone.txt:31
134 msgid ""
135 "On the central server, initialize a 'bare repository' in some directory:"
136 msgstr ""
137 "Auf dem zentralen Server erstelle ein 'bare Repository' in irgendeinem "
138 "Ordner:"
140 #. type: Plain text
141 #: ../en/clone.txt:36
142 #, no-wrap
143 msgid ""
144 " $ mkdir proj.git\n"
145 " $ cd proj.git\n"
146 " $ git init --bare\n"
147 " $  # one-line variant: GIT_DIR=proj.git git init\n"
148 msgstr ""
149 " $ mkdir proj.git\n"
150 " $ cd proj.git\n"
151 " $ git init --bare\n"
152 " $  # einzeilige Variante: GIT_DIR=proj.git git init\n"
154 #. type: Plain text
155 #: ../en/clone.txt:38
156 msgid "Start the Git daemon if necessary:"
157 msgstr "Wenn nötig, starte den Git-Dämon:"
159 #. type: Plain text
160 #: ../en/clone.txt:40
161 #, no-wrap
162 msgid " $ git daemon --detach  # it may already be running\n"
163 msgstr " $ git daemon --detach  # er könnte schon laufen\n"
165 #. type: Plain text
166 #: ../en/clone.txt:43
167 msgid ""
168 "For Git hosting services, follow the instructions to setup the initially "
169 "empty Git repository. Typically one fills in a form on a webpage."
170 msgstr ""
171 "Für Git Hostingdienste folge den Anweisungen zum Erstellen des zunächst "
172 "leeren Git 'Repository'. Normalerweise füllt man ein Formular auf einer "
173 "Website aus."
175 #. type: Plain text
176 #: ../en/clone.txt:45
177 msgid "'Push' your project to the central server with:"
178 msgstr "Übertrage ('push') dein Projekt auf den zentralen Server mit:"
180 #. type: Plain text
181 #: ../en/clone.txt:47
182 #, no-wrap
183 msgid " $ git push git://central.server/path/to/proj.git HEAD\n"
184 msgstr " $ git push git://zentraler.server/pfad/zu/proj.git HEAD\n"
186 #. type: Plain text
187 #: ../en/clone.txt:49
188 msgid "To check out the source, a developer types:"
189 msgstr "Um die Quellcodes abzurufen gibt ein Entwickler folgendes ein:"
191 #. type: Plain text
192 #: ../en/clone.txt:51
193 #, no-wrap
194 msgid " $ git clone git://central.server/path/to/proj.git\n"
195 msgstr " $ git clone git://zentraler.server/pfad/zu/proj.git\n"
197 #. type: Plain text
198 #: ../en/clone.txt:53
199 msgid "After making changes, the developer saves changes locally:"
200 msgstr "Nach dem Bearbeiten sichert der Entwickler die Änderungen lokal:"
202 #. type: Plain text
203 #: ../en/clone.txt:55 ../en/clone.txt:63
204 #, no-wrap
205 msgid " $ git commit -a\n"
206 msgstr " $ git commit -a\n"
208 #. type: Plain text
209 #: ../en/clone.txt:57
210 msgid "To update to the latest version:"
211 msgstr "Um auf die aktuelle Server-Version zu aktualisieren:"
213 #. type: Plain text
214 #: ../en/clone.txt:59 ../en/clone.txt:110
215 #, no-wrap
216 msgid " $ git pull\n"
217 msgstr " $ git pull\n"
219 #. type: Plain text
220 #: ../en/clone.txt:61
221 msgid "Any merge conflicts should be resolved then committed:"
222 msgstr ""
223 "Irgendwelche 'Merge'-Konflikte sollten dann aufgelöst und erneut 'commitet' "
224 "werden:"
226 #. type: Plain text
227 #: ../en/clone.txt:65
228 msgid "To check in local changes into the central repository:"
229 msgstr "Um die lokalen Änderungen in das zentrale 'Repository' zu übertragen:"
231 #. type: Plain text
232 #: ../en/clone.txt:67
233 #, no-wrap
234 msgid " $ git push\n"
235 msgstr " $ git push\n"
237 #. type: Plain text
238 #: ../en/clone.txt:71
239 msgid ""
240 "If the main server has new changes due to activity by other developers, the "
241 "push fails, and the developer should pull the latest version, resolve any "
242 "merge conflicts, then try again."
243 msgstr ""
244 "Wenn inzwischen neue Änderungen von anderen Entwicklern beim Hauptserver "
245 "eingegangen sind, schlägt dein 'push' fehl. Aktualisiere das lokale "
246 "'Repository' erneut mit 'pull', löse eventuell aufgetretene 'Merge'-"
247 "Konflikte und versuche es nochmal."
249 #. type: Plain text
250 #: ../en/clone.txt:73
251 msgid "=== Bare repositories ==="
252 msgstr "=== 'Nackte Repositories' ==="
254 #. type: Plain text
255 #: ../en/clone.txt:75
256 msgid ""
257 "A bare repository is so named because it has no working directory; it only "
258 "contains files that are normally hidden away in the `.git` subdirectory. In "
259 "other words, it maintains the history of a project, and never holds a "
260 "snapshot of any given version."
261 msgstr ""
262 "Ein nacktes ('bare') 'Repository' wird so genannt, weil es kein "
263 "Arbeitsverzeichnis hat. Es enthält nur Dateien, die normalerweise im '.git' "
264 "Unterverzeichnis versteckt sind. Mit anderen Worten, es verwaltet die "
265 "Geschichte eines Projekts, enthält aber niemals einen Auszug irgendeiner "
266 "beliebigen Version."
268 #. type: Plain text
269 #: ../en/clone.txt:82
270 msgid ""
271 "A bare repository plays a role similar to that of the main server in a "
272 "centralized version control system: the home of your project. Developers "
273 "clone your project from it, and push the latest official changes to it. "
274 "Typically it resides on a server that does little else but disseminate data. "
275 "Development occurs in the clones, so the home repository can do without a "
276 "working directory."
277 msgstr ""
278 "Ein 'bare Repository' übernimmt die Rolle des Hauptserver in einem "
279 "zentralisierten Versionsverwaltungssystem: Das Zuhause deines Projekts. "
280 "Entwickler 'clonen' dein Projekt davon und 'pushen' die letzten offiziellen "
281 "Änderungen dort hin. Meistens befindet es sich auf einem Server, der nicht "
282 "viel tut außer Daten zu verbreiten. Die Entwicklung findet in den 'Clonen' "
283 "statt, so kann das Heim-'Repository' ohne Arbeitsverzeichnis auskommen."
285 #. type: Plain text
286 #: ../en/clone.txt:84
287 msgid ""
288 "Many Git commands fail on bare repositories unless the `GIT_DIR` environment "
289 "variable is set to the repository path, or the `--bare` option is supplied."
290 msgstr ""
291 "Viele Git Befehle funktionieren nicht in 'bare Repositories'. Es sei denn "
292 "die `GIT_DIR` Umgebungsvariable wird auf das Arbeitsverzeichnis gesetzt, "
293 "oder die `--bare` Option wird übergeben."
295 #. type: Plain text
296 #: ../en/clone.txt:86
297 msgid "=== Push versus pull ==="
298 msgstr "=== 'Push' oder 'Pull' ==="
300 #. type: Plain text
301 #: ../en/clone.txt:94
302 msgid ""
303 "Why did we introduce the push command, rather than rely on the familiar pull "
304 "command? Firstly, pulling fails on bare repositories: instead you must "
305 "'fetch', a command we later discuss. But even if we kept a normal repository "
306 "on the central server, pulling into it would still be cumbersome. We would "
307 "have to login to the server first, and give the pull command the network "
308 "address of the machine we're pulling from. Firewalls may interfere, and what "
309 "if we have no shell access to the server in the first place?"
310 msgstr ""
311 "Warum haben wir den 'push'-Befehl eingeführt, anstatt bei dem vertrauten "
312 "'pull'-Befehl zu bleiben? Zuerst, 'pull' funktioniert nicht mit 'bare "
313 "Repositories': stattdessen benutze 'fetch', ein Befehl, den wir später "
314 "behandeln. Aber auch wenn wir ein normales 'Repository' auf dem zentralen "
315 "Server halten würden, wäre das 'pullen' eine mühselige Angelegenheit. Wir "
316 "müssten uns zuerst in den Server einloggen und dem 'pull'-Befehl die "
317 "Netzwerkadresse des Computer übergeben, von dem aus wir die Änderungen "
318 "'pullen', also abholen wollen. Firewalls könnten uns stören und was, wenn "
319 "wir gar keine Berechtigung für eine Serverkonsole haben."
321 #. type: Plain text
322 #: ../en/clone.txt:96
323 msgid ""
324 "However, apart from this case, we discourage pushing into a repository, "
325 "because confusion can ensue when the destination has a working directory."
326 msgstr ""
327 "Wie auch immer, abgesehen von diesem Fall, raten wir vom 'Pushen' in ein "
328 "'Repository' ab. Falls das Ziel nämlich ein Arbeitsverzeichnis hat, können "
329 "Verwirrungen entstehen."
331 #. type: Plain text
332 #: ../en/clone.txt:98
333 msgid ""
334 "In short, while learning Git, only push when the target is a bare "
335 "repository; otherwise pull."
336 msgstr ""
337 "Kurzum, während du lernst mit Git umzugehen, 'pushe' nur, wenn das Ziel ein "
338 "'bare Repository' ist; andernfalls benutze 'pull'."
340 #. type: Plain text
341 #: ../en/clone.txt:100
342 msgid "=== Forking a Project ==="
343 msgstr "=== 'Fork' eines Projekts ==="
345 #. type: Plain text
346 #: ../en/clone.txt:102
347 msgid ""
348 "Sick of the way a project is being run? Think you could do a better job? "
349 "Then on your server:"
350 msgstr ""
351 "Hast du es satt, wie sich ein Projekt entwickelt? Du denkst, du kannst das "
352 "besser? Dann mache folgendes auf deinem Server:"
354 #. type: Plain text
355 #: ../en/clone.txt:104
356 #, no-wrap
357 msgid " $ git clone git://main.server/path/to/files\n"
358 msgstr " $ git clone git://haupt.server/pfad/zu/dateien\n"
360 #. type: Plain text
361 #: ../en/clone.txt:106
362 msgid "Next, tell everyone about your fork of the project at your server."
363 msgstr "Dann erzähle jedem von deiner 'Fork' des Projekts auf deinem Server."
365 #. type: Plain text
366 #: ../en/clone.txt:108
367 msgid ""
368 "At any later time, you can merge in the changes from the original project "
369 "with:"
370 msgstr ""
371 "Zu jedem späteren Zeitpunkt kannst du die Änderungen des Originalprojekts "
372 "'mergen' mit: "
374 #. type: Plain text
375 #: ../en/clone.txt:112
376 msgid "=== Ultimate Backups ==="
377 msgstr "=== Ultimative Datensicherung ==="
379 #. type: Plain text
380 #: ../en/clone.txt:114
381 msgid ""
382 "Want numerous tamper-proof geographically diverse redundant archives? If "
383 "your project has many developers, don't do anything! Every clone of your "
384 "code is effectively a backup. Not just of the current state, but of your "
385 "project's entire history. Thanks to cryptographic hashing, if anyone's clone "
386 "becomes corrupted, it will be spotted as soon as they try to communicate "
387 "with others."
388 msgstr ""
389 "Du willst zahlreiche, vor Manipulation geschützte, redundante "
390 "Datensicherungen an unterschiedlichen Orten? Wenn dein Projekt viele "
391 "Entwickler hat, musst du nichts tun! Jeder 'Clone' deines Codes ist eine "
392 "vollwertige Datensicherung. Nicht nur des aktuellen Stand, sondern der "
393 "gesamten Geschichte. Wird irgendein 'Clone' beschädigt, wird dies dank des "
394 "kryptographischen 'Hashing' sofort erkannt, sobald derjenige versucht mit "
395 "anderen zu kommunizieren."
397 #. type: Plain text
398 #: ../en/clone.txt:116
399 msgid ""
400 "If your project is not so popular, find as many servers as you can to host "
401 "clones."
402 msgstr ""
403 "Wenn dein Projekt nicht so bekannt ist, finde so viele Server wie du kannst "
404 "um dort einen 'Clone' zu platzieren."
406 #. type: Plain text
407 #: ../en/clone.txt:118
408 msgid ""
409 "The truly paranoid should always write down the latest 20-byte SHA1 hash of "
410 "the HEAD somewhere safe. It has to be safe, not private. For example, "
411 "publishing it in a newspaper would work well, because it's hard for an "
412 "attacker to alter every copy of a newspaper."
413 msgstr ""
414 "Die wirklich Paranoiden sollten immer den letzten 20-Byte SHA1 Hash des "
415 "'HEAD' aufschreiben und an einem sicheren Ort aufbewahren. Er muss sicher "
416 "sein, aber nicht privat. Zum Beispiel wäre es sicher, ihn in einer Zeitung "
417 "zu veröffentlichen, denn es ist schwer für einen Angreifer jede "
418 "Zeitungskopie zu manipulieren."
420 #. type: Plain text
421 #: ../en/clone.txt:120
422 msgid "=== Light-Speed Multitask ==="
423 msgstr "=== Multitasking mit Lichtgeschwindigkeit ==="
425 #. type: Plain text
426 #: ../en/clone.txt:122
427 msgid ""
428 "Say you want to work on several features in parallel. Then commit your "
429 "project and run:"
430 msgstr ""
431 "Nehmen wir an du willst parallel an mehreren Funktionen arbeiten. Dann "
432 "'commite' dein Projekt und gib ein:"
434 #. type: Plain text
435 #: ../en/clone.txt:124 ../en/clone.txt:142
436 #, no-wrap
437 msgid " $ git clone . /some/new/directory\n"
438 msgstr " $ git clone . /irgendein/neuer/ordner\n"
440 #. type: Plain text
441 #: ../en/clone.txt:126
442 msgid ""
443 "Git exploits hard links and file sharing as much as safely possible to "
444 "create this clone, so it will be ready in a flash, and you can now work on "
445 "two independent features simultaneously. For example, you can edit one clone "
446 "while the other is compiling."
447 msgstr ""
448 "Wann immer es sicher ist nutzt Git Verknüpfungen und Dateifreigaben um "
449 "diesen 'Clone' zu erzeugen, deshalb wird es blitzartig fertig sein und du "
450 "kannst nun an zwei unabhängigen Funktionen arbeiten. Zum Beispiel kannst du "
451 "im einen 'Clone' editieren, während der andere übersetzt wird."
453 #. type: Plain text
454 #: ../en/clone.txt:128
455 msgid "At any time, you can commit and pull changes from the other clone."
456 msgstr ""
457 "Zu jeder Zeit kannst du 'commiten' und die Änderungen vom anderen 'Clone' "
458 "mit 'pull' übernehmen."
460 #. type: Plain text
461 #: ../en/clone.txt:130
462 #, no-wrap
463 msgid " $ git pull /the/other/clone HEAD\n"
464 msgstr " $ git pull /der/andere/clone HEAD\n"
466 #. type: Plain text
467 #: ../en/clone.txt:132
468 msgid "=== Guerilla Version Control ==="
469 msgstr "=== Versionsverwaltung im Untergrund ==="
471 #. type: Plain text
472 #: ../en/clone.txt:134
473 msgid ""
474 "Are you working on a project that uses some other version control system, "
475 "and you sorely miss Git? Then initialize a Git repository in your working "
476 "directory:"
477 msgstr ""
478 "Arbeitest du an einem Projekt, das ein anderes Versionsverwaltungssystem "
479 "nutzt und vermisst du Git? Dann erstelle ein Git 'Repository' in deinem "
480 "Arbeitsverzeichnis:"
482 #. type: Plain text
483 #: ../en/clone.txt:140
484 msgid "then clone it:"
485 msgstr "dann 'Clone' es:"
487 #. type: Plain text
488 #: ../en/clone.txt:144
489 msgid ""
490 "Now go to the new directory and work here instead, using Git to your heart's "
491 "content. Once in a while, you'll want to sync with everyone else, in which "
492 "case go to the original directory, sync using the other version control "
493 "system, and type:"
494 msgstr ""
495 "Nun gehe in das neue Verzeichnis und arbeite dort mit Git nach Herzenslust. "
496 "Irgendwann wirst du dann mit den anderen synchronisieren wollen, dann gehe "
497 "in das Originalverzeichnis, aktualisiere mit dem anderen "
498 "Versionsverwaltungssystem und gib ein:"
500 #. type: Plain text
501 #: ../en/clone.txt:147
502 #, no-wrap
503 msgid ""
504 " $ git add .\n"
505 " $ git commit -m \"Sync with everyone else\"\n"
506 msgstr ""
507 " $ git add .\n"
508 " $ git commit -m \"Synchronisation mit den anderen\"\n"
510 #. type: Plain text
511 #: ../en/clone.txt:149
512 msgid "Then go to the new directory and run:"
513 msgstr "Dann gehe wieder ins neue Verzeichnis und gib ein:"
515 #. type: Plain text
516 #: ../en/clone.txt:152
517 #, no-wrap
518 msgid ""
519 " $ git commit -a -m \"Description of my changes\"\n"
520 " $ git pull\n"
521 msgstr ""
522 " $ git commit -a -m \"Beschreibung der Änderungen\"\n"
523 " $ git pull\n"
525 #. type: Plain text
526 #: ../en/clone.txt:154
527 msgid ""
528 "The procedure for giving your changes to everyone else depends on the other "
529 "version control system. The new directory contains the files with your "
530 "changes. Run whatever commands of the other version control system are "
531 "needed to upload them to the central repository."
532 msgstr ""
533 "Die Vorgehensweise, wie du deine Änderungen den anderen übergibst, hängt vom "
534 "anderen Versionsverwaltungssystem ab. Das neue Verzeichnis enthält die "
535 "Dateien mit deinen Änderungen. Führe die Anweisungen des anderen "
536 "Versionsverwaltungssystems aus, die nötig sind um die Dateien ins zentrale "
537 "'Repository' zu übertragen."
539 #. type: Plain text
540 #: ../en/clone.txt:156
541 msgid ""
542 "Subversion, perhaps the best centralized version control system, is used by "
543 "countless projects. The *git svn* command automates the above for Subversion "
544 "repositories, and can also be used to http://google-opensource.blogspot."
545 "com/2008/05/export-git-project-to-google-code.html[export a Git project to a "
546 "Subversion repository]."
547 msgstr ""
548 "Subversion, vielleicht das beste zentralisierte Versionsverwaltungssystem, "
549 "wird von unzähligen Projekten benutzt. Der *git svn*-Befehl automatisiert "
550 "den zuvor genannten Ablauf für Subversion 'Repositories' und kann auch "
551 "benutzt werden um http://google-opensource.blogspot.com/2008/05/export-git-"
552 "project-to-google-code.html[ein Git Projekt in ein Subversion 'Repository' "
553 "zu exportieren]."
555 #. type: Plain text
556 #: ../en/clone.txt:158
557 msgid "=== Mercurial ==="
558 msgstr "=== Mercurial ==="
560 #. type: Plain text
561 #: ../en/clone.txt:160
562 msgid ""
563 "Mercurial is a similar version control system that can almost seamlessly "
564 "work in tandem with Git. With the `hg-git` plugin, a Mercurial user can "
565 "losslessly push to and pull from a Git repository."
566 msgstr ""
567 "Mercurial ist ein ähnliches Versionsverwaltungssystem, das fast nahtlos mit "
568 "Git zusammenarbeiten kann. Mit der `hg-git`-Erweiterung kann ein Benutzer "
569 "von Mercurial verlustfrei in ein Git 'Repository' 'pushen' und daraus "
570 "'pullen'."
572 #. type: Plain text
573 #: ../en/clone.txt:162
574 msgid "Obtain the `hg-git` plugin with Git:"
575 msgstr "Beschaffe dir die `hg-git`-Erweiterung mit Git:"
577 #. type: Plain text
578 #: ../en/clone.txt:164
579 #, no-wrap
580 msgid " $ git clone git://github.com/schacon/hg-git.git\n"
581 msgstr " $ git clone git://github.com/schacon/hg-git.git\n"
583 #. type: Plain text
584 #: ../en/clone.txt:166
585 msgid "or Mercurial:"
586 msgstr "oder Mercurial:"
588 #. type: Plain text
589 #: ../en/clone.txt:168
590 #, no-wrap
591 msgid " $ hg clone http://bitbucket.org/durin42/hg-git/\n"
592 msgstr " $ hg clone http://bitbucket.org/durin42/hg-git/\n"
594 #. type: Plain text
595 #: ../en/clone.txt:170
596 msgid ""
597 "Sadly, I am unaware of an analogous plugin for Git. For this reason, I "
598 "advocate Git over Mercurial for the main repository, even if you prefer "
599 "Mercurial. With a Mercurial project, usually a volunteer maintains a "
600 "parallel Git repository to accommodate Git users, whereas thanks to the `hg-"
601 "git` plugin, a Git project automatically accommodates Mercurial users."
602 msgstr ""
603 "Leider kenne ich keine solche Erweiterung für Git. Aus diesem Grund plädiere "
604 "ich für Git statt Mercurial für ein zentrales 'Repository', auch wenn man "
605 "Mercurial bevorzugt. Bei einem Mercurial Projekt gibt es gewöhnlich immer "
606 "einen Freiwilligen, der parallel dazu ein Git 'Repository' für die Git "
607 "Anwender unterhält, wogegen, Dank der `hg-git`-Erweiterung, ein Git Projekt "
608 "automatisch die Benutzer von Mercurial mit einbezieht."
610 #. type: Plain text
611 #: ../en/clone.txt:172
612 msgid ""
613 "Although the plugin can convert a Mercurial repository to a Git repository "
614 "by pushing to an empty repository, this job is easier with the `hg-fast-"
615 "export.sh` script, available from:"
616 msgstr ""
617 "Die Erweiterung kann auch ein Mercurial 'Repository' in ein Git 'Repository' "
618 "umwandeln, indem man in ein leeres 'Repository' 'pushed'. Einfacher geht das "
619 "mit dem `hg-fast-export.sh` Skript, welches es hier gibt:"
621 #. type: Plain text
622 #: ../en/clone.txt:174
623 #, no-wrap
624 msgid " $ git clone git://repo.or.cz/fast-export.git\n"
625 msgstr " $ git clone git://repo.or.cz/fast-export.git\n"
627 #. type: Plain text
628 #: ../en/clone.txt:176
629 msgid "To convert, in an empty directory:"
630 msgstr "Zum Konvertieren gib in einem leeren Verzeichnis ein:"
632 #. type: Plain text
633 #: ../en/clone.txt:179
634 #, no-wrap
635 msgid ""
636 " $ git init\n"
637 " $ hg-fast-export.sh -r /hg/repo\n"
638 msgstr ""
639 " $ git init\n"
640 " $ hg-fast-export.sh -r /hg/repo\n"
642 #. type: Plain text
643 #: ../en/clone.txt:181
644 msgid "after adding the script to your `$PATH`."
645 msgstr "nachdem du das Skript zu deinem `$PATH` hinzugefügt hast."
647 #. type: Plain text
648 #: ../en/clone.txt:183
649 msgid "=== Bazaar ==="
650 msgstr "=== Bazaar ==="
652 #. type: Plain text
653 #: ../en/clone.txt:186
654 msgid ""
655 "We briefly mention Bazaar because it is the most popular free distributed "
656 "version control system after Git and Mercurial."
657 msgstr ""
658 "Wir erwähnen auch kurz Bazaar, weil es nach Git und Mercurial das "
659 "bekannteste freie verteilte Versionsverwaltungssystem ist."
661 #. type: Plain text
662 #: ../en/clone.txt:188
663 msgid ""
664 "Bazaar has the advantage of hindsight, as it is relatively young; its "
665 "designers could learn from mistakes of the past, and sidestep minor "
666 "historical warts. Additionally, its developers are mindful of portability "
667 "and interoperation with other version control systems."
668 msgstr ""
669 "Bazaar hat den Vorteil des Rückblicks, da es relativ jung ist; seine "
670 "Entwickler konnten aus Fehlern der Vergangenheit lernen und kleine "
671 "historische Unwegbarkeiten umgehen. Außerdem waren sich die Entwickler der "
672 "Popularität und Interoperabilität mit anderen Versionsverwaltungssystemen "
673 "bewusst."
675 #. type: Plain text
676 #: ../en/clone.txt:190
677 msgid ""
678 "A `bzr-git` plugin lets Bazaar users work with Git repositories to some "
679 "extent. The `tailor` program converts Bazaar repositories to Git "
680 "repositories, and can do so incrementally, while `bzr-fast-export` is well-"
681 "suited for one-shot conversions."
682 msgstr ""
683 "Eine `bzr-git`-Erweiterung lässt Anwender von Bazaar einigermaßen mit Git "
684 "'Repositories' arbeiten. Das `tailor` Programm konvertiert Bazaar "
685 "'Repositories' zu Git 'Repositories' und kann das forlaufend tun, während "
686 "`bzr-fast-export` für einmalige Konvertierungen besser geeignet ist."
688 #. type: Plain text
689 #: ../en/clone.txt:192
690 msgid "=== Why I use Git ==="
691 msgstr "=== Warum ich Git benutze ==="
693 #. type: Plain text
694 #: ../en/clone.txt:194
695 msgid ""
696 "I originally chose Git because I heard it could manage the unimaginably "
697 "unmanageable Linux kernel source. I've never felt a need to switch. Git has "
698 "served admirably, and I've yet to be bitten by its flaws. As I primarily use "
699 "Linux, issues on other platforms are of no concern."
700 msgstr ""
701 "Ich habe ursprünglich Git gewählt, weil ich gehört habe, dass es die "
702 "unvorstellbar unüberschaubaren Linux Kernel Quellcodes verwalten kann. Ich "
703 "hatte noch keinen Grund zu wechseln. Git hat mir bewundernswert gedient und "
704 "hat mich bis jetzt noch nie im Stich gelassen. Da ich in erster Linie unter "
705 "Linux arbeite, sind Probleme anderer Plattformen bedeutungslos."
707 #. type: Plain text
708 #: ../en/clone.txt:196
709 msgid ""
710 "Also, I prefer C programs and bash scripts to executables such as Python "
711 "scripts: there are fewer dependencies, and I'm addicted to fast running "
712 "times."
713 msgstr ""
714 "Ich bevorzuge auch C-Programme und 'bash'-Skripte gegenüber Anwendungen wie "
715 "zum Beispiel Python Skripts: Es gibt weniger Abhängigkeiten und ich bin "
716 "süchtig nach schellen Ausführungszeiten."
718 #. type: Plain text
719 #: ../en/clone.txt:198
720 msgid ""
721 "I did think about how Git could be improved, going so far as to write my own "
722 "Git-like tool, but only as an academic exercise. Had I completed my project, "
723 "I would have stayed with Git anyway, as the gains are too slight to justify "
724 "using an oddball system."
725 msgstr ""
726 "Ich dachte darüber nach, wie Git verbessert werden könnte, ging sogar so "
727 "weit, dass ich meine eigene Git-Ähnliche Anwendung schrieb, allerdings nur "
728 "als akademische Übungen. Hätte ich mein Projekt fertig gestellt, wäre ich "
729 "trotzdem bei Git geblieben, denn die Verbesserungen wären zu gering gewesen "
730 "um den Einsatz eines Eigenbrödler-Systems zu rechtfertigen."
732 #. type: Plain text
733 #: ../en/clone.txt:199
734 msgid ""
735 "Naturally, your needs and wants likely differ, and you may be better off "
736 "with another system. Nonetheless, you can't go far wrong with Git."
737 msgstr ""
738 "Natürlich können deine Bedürfnisse und Wünsche ganz anders sein und "
739 "vielleicht bist du mit einem anderen System besser dran. Wie auch immer, mit "
740 "Git kannst du nicht viel falsch machen."