git-10_do tag

$git tag -a tag_test 1a85321         #tag one specific head 
$git tag -l                          #show all tags 
$git push origin tag_test            #push tag to remote 
$git tag -d tag_test                 # delete one local tag 
$git push origin :refs/tags/tag_test #delete one remote tag 
发布了38 篇原创文章 · 获赞 3 · 访问量 6671

猜你喜欢

转载自blog.csdn.net/zhanghuanhuanzhh/article/details/88720775