Skip to main content
  1. Learn
  2. Software Development
  3. Guides
  4. Git tutorial
  5. 如何使用 Git
  6. 如何在 Git 中使用標籤
  7. 新增標籤
GuidesSoftware DevelopmentBacklog
Git

Project and code management together.

新增標籤

使用 git tag 指令,來新增一個名為tag1的新標籤。

$ git tag tag1

然後,執行不含任何參數的 tag 指令,您將看到此儲存庫中的標籤清單,包括我們剛才新增的標籤。

$ git tag
  tag1

若要查看含有標籤資訊的歷史日誌,請執行 git log 指令--decorate選項。

$ 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

這就是我們的歷史紀錄現在的樣子。

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