檢視本地標籤:
git tag
推送所有標籤:
git push --tags
刪除本地標籤:
git tag -d 標籤名
事實上git 的推送和刪除遠端標籤命令是相同的,刪除操作實際上就是推送空的源標籤refs:
推送某個標籤
git push origin 標籤名
相當於git push origin refs/tags/源標籤名:refs/tags/目的標籤名
所以,刪除遠端標籤可以把源標籤為空:
git push origin :refs/tags/標籤名
在git v1.7.0 之後,可以使用這種語法刪除遠端標籤:
git push origin --delete tag 標籤名
git檢視 新建 刪除遠端分支
git branch agit branchgit branch feature new 在本地倉庫新建feature new分支git push origin feature new 將feature new推到遠端倉庫git checkout feature new 切換到feature new...
如何刪除git遠端分支
1,在開發過程中,大家在遠端建立了許多分支,有些是無用的,該如何刪除呢,可以參考下面的方法。如果不再需要某個遠端分支了,比如搞定了某個特性並把它合併進了遠端的 master 分支 或任何其他存放 穩定 的地方 可以用這個非常無厘頭的語法來刪除它 git push 遠端名 分支名 如果想在伺服器上刪 ...
Git檢視 刪除遠端分支和tag
加上 a引數可以檢視遠端分支,遠端分支會用紅色表示出來 如果你開了顏色支援的話 view code bash 123 4567 8910 git branch a master remote tungway v1.52 zrong remotes origin master remotes orig...