1
0
Fork 0
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:
LukBukkit 2020-10-21 19:29:42 +02:00 committed by Starbeamrainbowlabs
parent 2c958f1ca9
commit 6c83bf3e45

View 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}}`