Skip to main content
  1. Learn
  2. Software Development
  3. Guides
  4. Git tutorial
  5. Verwenden von Git
  6. Verwenden von Tagging in Git
  7. Hinzufügen eines Tags
GuidesSoftware DevelopmentBacklog
Git

Project and code management together.

Hinzufügen eines Tags

Verwenden Sie den Befehl git tag um ein neues Tag mit dem Namen tag1 hinzuzufügen.

$ git tag tag1

Führen Sie dann den tag-Befehl ohne Parameter aus, um eine Liste der Tags in diesem Repository zu erhalten, einschließlich des soeben hinzugefügten.

$ git tag
  tag1

Um das Verlaufsprotokoll mit Tag-Informationen anzuzeigen, führen Sie den Befehl git log mit der Option --decorate aus.

$ git log --decorate
  commit e7978c94d2104e3e0e6e4a5b4a8467b1d2a2ba19 (HEAD, tag: tag1, main)
  Author: yourname <yourname@yourmail.com>
  Date:   Wed Jul 18 16:43:27 2022 +0900

      first commit

So sieht nun unser Verlauf aus.

Add a tag "tag1" to the commit indicated by the current HEAD

Subscribe to our newsletter

Learn with Nulab to bring your best ideas to life