Git 標籤(版本號)
阿新 • • 發佈:2020-07-29
一、建立標籤
在Git中打標籤非常簡單,首先,切換到需要打標籤的分支上:
1 $ git branch 2 * dev 3 master 4 $ git checkout master 5 Switched to branch 'master'
然後,敲命令git tag <name>
就可以打一個新標籤:
$ git tag V1.0
可以用命令git tag
檢視所有標籤:
1 $ git tag 2 V1.0
預設標籤是打在最新提交的commit上的。有時候,如果忘了打標籤,比如,現在已經是週五了,但應該在週一打的標籤沒有打,怎麼辦?
方法是找到歷史提交的commit id,然後打上就可以了:
1 $ git log --pretty=oneline --abbrev-commit 2 3f063d8 (HEAD -> master, tag: V1.0, origin/master, origin/HEAD) merged bug fix 101 3 a8b5c5e fix bug 101 4 c0d98d6 conflict fixed 5 24f92f4 coship 6 1f9f1d5 money 7 f8c2cfa branch test 8 c6bdeb5 remove test.txt 9 c61ac4f add test.txt 10 35b7969 append GPL11 136d10c add two lines 12 1186b5e creat a new file readme
比方說要對coship
這次提交打標籤,它對應的commit id是24f92f4
,敲入命令:
$ git tag V0.9 24f92f4
再用命令git tag
檢視標籤:
1 $ git tag 2 V0.9 3 V1.0
注意,標籤不是按時間順序列出,而是按字母排序的。可以用git show <tagname>
檢視標籤資訊:
1 $ git show V0.9 2 commit 24f92f49eb1b27eba2e38e667983e63830bc6041 (tag: V0.9)3 Author: liumingjun <[email protected]> 4 Date: Fri Mar 23 16:06:04 2018 +0800 5 6 coship 7 8 diff --git a/readme.txt b/readme.txt 9 index a4c0762..ced6222 100644 10 --- a/readme.txt 11 +++ b/readme.txt 12 @@ -1,3 +1,4 @@ 13 Git is a distributed version control system. 14 Git is free software distributed under the GPL 15 I love work 16 +coship coship and coship
可以看到,v0.9
確實打在coship
這次提交上。
還可以建立帶有說明的標籤,用-a
指定標籤名,-m
指定說明文字:
$ git tag -a V0.1 -m "version 0.1 released" 1186b5e
用命令git show <tagname>
可以看到說明文字:
1 $ git show V0.1 2 tag V0.1 3 Tagger: liumingjun <[email protected]> 4 Date: Fri Mar 23 17:51:54 2018 +0800 5 6 version 0.1 released 7 8 commit 1186b5ec3a492a85c085b7987b10c4be52e0381f (tag: V0.1) 9 Author: liumingjun <[email protected]> 10 Date: Thu Mar 22 20:21:57 2018 +0800 11 12 creat a new file readme 13 14 diff --git a/readme.txt b/readme.txt 15 new file mode 100644 16 index 0000000..c81a21f 17 --- /dev/null 18 +++ b/readme.txt 19 @@ -0,0 +1 @@ 20 +This is Git 21 \ No newline at end of file
二、操作標籤
如果標籤打錯了,也可以刪除:
1 $ git tag -d V0.1 2 Deleted tag 'V0.1' (was fee78aa)
因為建立的標籤都只儲存在本地,不會自動推送到遠端。所以,打錯的標籤可以在本地安全刪除。
如果要推送某個標籤到遠端,使用命令git push origin <tagname>
:
1 $ git push origin V1.0 2 Total 0 (delta 0), reused 0 (delta 0) 3 To github.com:lmj1117/test.git 4 * [new tag] V1.0 -> V1.0
或者,一次性推送全部尚未推送到遠端的本地標籤:
1 $ git push origin --tags 2 Total 0 (delta 0), reused 0 (delta 0) 3 To github.com:lmj1117/test.git 4 * [new tag] V0.9 -> V0.9
如果標籤已經推送到遠端,要刪除遠端標籤就麻煩一點,先從本地刪除:
1 $ git tag -d V0.9 2 Deleted tag 'V0.9' (was 24f92f4)
然後,從遠端刪除。刪除命令也是push,但是格式如下:
1 $ git push origin :refs/tags/V0.9 2 To github.com:lmj1117/test.git 3 - [deleted] V0.9
要看看是否真的從遠端庫刪除了標籤,可以登陸GitHub檢視。