摘要: 标签管理 tag 1、创建标签 git tag <tagname> git tag -a <tagname> -m "blablabla..." 可以指定标签信息 git tag 查看所有标签 2、操作标签 git tag -d <tagname> 删除标签 git push origin <tag 阅读全文
posted @ 2021-08-13 16:53 大洋Blog 阅读(25) 评论(0) 推荐(0)
摘要: 6、多人协作 git remote 查看远程库的信息 git remote -v 显示更详细的信息 git push origin <branch-name> 推送分支 git pull 抓取分支 git branch --set-upstream-to <branch-name> origin/< 阅读全文
posted @ 2021-08-13 13:43 大洋Blog 阅读(15) 评论(0) 推荐(0)