赞
踩
git添加tag和删除tag
#新增tag
git tag NoSQLTestV1.0
#push代码
git push origin NoSQLTestV1.0
#查看tag
git tag
#切换到tag
git checkout testV1.0
#删除本地tag
git tag -d testv1.0
#删除远程tag
git push origin :refs/tags/testV1.0
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。