1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 19:19:44 +01:00

git-bisect: fix German translation

This commit is contained in:
DoPanik 2020-10-05 21:02:36 +02:00 committed by Starbeamrainbowlabs
parent 3e91d27300
commit 766024c4a5

View file

@ -2,13 +2,12 @@
> Benuzt binäre Suche um den commit ausfindig zu machen, welcher einen Fehler beinhaltet.
> Git springt im Commit-Graph automatisch vor und zurück, um denfehlerhaften Commit schrittweise einzugrenzen zu können.
> More information: <https://git-scm.com/docs/git-bisect>.
> Mehr Informationen: <https://git-scm.com/docs/git-bisect>.
- Startet eine Bisect-Session in einem Commit-Bereich, der durch einen bekannten fehlerhaften Commit und einen sauber Commit begrenzt wird:
`git bisect start {{bad_commit}} {{good_commit}}`
- For each commit that `git bisect` selects, mark it as "bad" or "good" after testing it for the issue:
- Jeder Commit, den `git bisect` auswählt, wird geprüft und mit "gut" oder "schlecht" gekennzeichnet:
`git bisect {{good|bad}}`