首页 › 分类存档 › git

Git删除远程Tag、分支

删除远程分支

git branch -r -d origin/branch-name
git push origin :branch-name
删除远程Tag

显示本地 tag
git tag
Remote_Systems_Operation
删除本地tag
git tag -d Remote_Systems_Operation
用push, 删除远程tag
git push origin :refs/tags/Remote_Systems_Operation

Git基础使用教程:第一个Git项目

一个很小的HTML项目,使用。Git来记录和跟踪这个项目。包括以下内容:
创建版本库。
添加与修改文件。
创建新分支。
打标签并整理版本库。
克隆版本库。
继续阅读 »