摘要:
1. 创建标签; $git tag name 2. 查看所有标签; $git tag 3.给提交过的版本打标签; $git tag name commid_id 4.git show tagname; 查看标签信息; 5.创建带有说明的标签; $git tag -a name -m "说明文字" * 阅读全文
摘要:
1.查看远程仓库; $git remote $git remote -v 更详细的信息; $ git remote -v $ git remote -v origin git@github.com:zccxy/Repository.git (fetch) 抓取 origin git@github.c 阅读全文