mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 11:35:33 +02:00
git-bisect: add german translation
This commit is contained in:
parent
69359c60ff
commit
557660e181
1 changed files with 22 additions and 0 deletions
22
pages.de/common/git-bisect.md
Normal file
22
pages.de/common/git-bisect.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
# git bisect
|
||||
|
||||
> 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>.
|
||||
|
||||
- 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}}`
|
||||
|
||||
- Nachdem "git bisect" den fehlerhaften Commit lokalisiert hat kann mit 'git bisect reset' zum vorherigen Branch zurück gewechselt werden:
|
||||
|
||||
`git bisect reset`
|
||||
|
||||
- Überspringen einen Commit während der Bisect-Session (z.B. einen, der die Tests aufgrund eines anderen Problems nicht bestanden hat):
|
||||
|
||||
`git bisect skip`
|
Loading…
Add table
Reference in a new issue