新建tag 查看本地Tag 查看远端Tag 基于远端Tag新建分支 删除远端Tag 等操作

1.查看本地tag

git tag

2. 查看远端tag

git ls-remote --tags origin

4. 新建tag

git tag -a newTag -m “xxx这里是该tag的内容”

3.将本地tag推送到远端tag

git push origin yourTagName  //yourTagName这里指你要推送到远端的tag名字

git push origin --tags   //  推送所有本地tag到远端tag

4.基于远端Tag新建分支

git branch newBranchName originTagName

// git branch sys_471_20210821 release-1.0

git checkout newBranchName

5. 删除本地Tag

git tag -d tag-name

6. 删除远端Tag

git push origin :/refs/tags/tag-name

7.批量删除本地Tag/远端Tag

1、git tag -d $(git tag -l)      //删除本地tag
2、git fetch                 //拉取远程tag
3、git push origin --delete $(git tag -l)        //删除远程tag
4、git tag -d $(git tag -l)      //删除本地tag

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值