Git tag

作者: OldChicken_ | 来源:发表于2018-10-28 17:59 被阅读3次

同大多数 VCS 一样,Git 也可以对某一时间点上的版本打上标签。人们在发布某个软件版本(比如 v1.0 等等)的时候,经常这么做。这样做的作用是:

Git tags are like milestones, markers or a specific point in the repo’s history marked as significant. Tags are usually used to mark stable releases or achievement of very important milestones.
Tags can help the users of the repo to easily navigate to the important parts of the code history like release points. For example, on Github, you can easily grab archive of “tags” in the current repo.
Ref: http://masnun.com/2012/06/28/tagging-in-git-why-how.html

附:

  1. git tag具体操作方法参考
  2. Some other info about Release: Release Your Software

相关文章

  • git 创建tag , 查看tag , 删除tag

    git tag//查看tag git tag test_tag //在git打tag git push origi...

  • git 打 tag,远程推送 tag

    查看已有tag git tag 本地打tag git tag 远程推送 tag git push o...

  • git 打标签

    1. 查看tag #git tag 2. 查看指定版本的tag #git tag -l 如:git tag -...

  • git 使用

    tag git tag -l -n:查看所有tag和描述 git tag -l:查看本地tag git show-...

  • tag

    1、查看分支tag git tag 或者 git tag -l 2、打标签 git tag name ...

  • git-tag的使用

    显示tag git tag tag 匹配 git tag -l 'v1.4.2.*' 为当前提交添加tag git...

  • git 标签tag

    新建tag git tag tag_namegit push origin tag_name 删除tag git ...

  • git 关于tag汇总

    tag 使用 查看(本地): % git tag tag: % git tag tag_name commit_i...

  • Git 删除远程 tag 防止恢复

    git tag 标签简介 1、git tag --list 列出所有的标签 2、git tag

  • git操作笔记

    git tag操作 git tag -l 查看本地tag git ls-remote --tag 查看当前分支远程...

网友评论

    本文标题:Git tag

    本文链接:https://www.haomeiwen.com/subject/xjkmtqtx.html