mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 17:26:01 +02:00
git-tag: add German translation
This commit is contained in:
parent
2c958f1ca9
commit
6c83bf3e45
1 changed files with 33 additions and 0 deletions
33
pages.de/common/git-tag.md
Normal file
33
pages.de/common/git-tag.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# git tag
|
||||
|
||||
> Erstelle, lösche, liste sie auf und überprüfe Tags.
|
||||
> Ein Tag ist eine statische Referenz auf einen bestimmten Commit.
|
||||
> Mehr Informationen: <https://git-scm.com/docs/git-tag>.
|
||||
|
||||
- Liste alle Tags auf:
|
||||
|
||||
`git tag`
|
||||
|
||||
- Erstelle einen Tag mit Namen, welcher auf den aktuellen Commit zeigt:
|
||||
|
||||
`git tag {{name_des_tags}}`
|
||||
|
||||
- Erstelle einen Tag mit Namen, welcher auf einen bestimmten Commit zeigt:
|
||||
|
||||
`git tag {{name_des_tags}} {{commit}}`
|
||||
|
||||
- Erstelle einen Tag mit Anmerkung:
|
||||
|
||||
`git tag {{name_des_tags}} -m {{anmkerung}}`
|
||||
|
||||
- Lösche einen Tag mit bestimmten Namen:
|
||||
|
||||
`git tag -d {{name_des_tags}}`
|
||||
|
||||
- Lade die aktualisierten Tags aus dem Upstream:
|
||||
|
||||
`git fetch --tags`
|
||||
|
||||
- Liste alle Tags auf, bei denen sich in den vorangegangenen Commits ein bestimmter Commit findet:
|
||||
|
||||
`git tag --contains {{commit}}`
|
Loading…
Add table
Reference in a new issue