• git tag


    命令行:

    git tag -a v3.0 -m "这是4.0版本"
    git push origin v3.0
    //git tag -a 标签名称 -m "说明"
    //git push origin 标签名称

    删除tag

    git tag -d v1.1  //删除本地tag
    
    git push origin :v1.1//删除远程tag
    //也可以这样  
    git push origin --delete tag V1.1 

    以上命令在项目仓库创建了一个v3.0的release,如下图:


    1.进入到项目仓库,选择release选项卡,可以点击create a new release/Draft a new release创建一个新的release.

    2.未勾选This is a pre-release通过github官方提供的api可访问我们的release信息,格式如下:

    /repos/:owner/:repo/releases/:id

    更多API说明访问:https://developer.github.com/v3/repos/releases/

    例:访问https://api.github.com/repos/kingBook/testGit/releases/latest可以获取如下信息

    {
      "url": "https://api.github.com/repos/kingBook/testGit/releases/9028810",
      "assets_url": "https://api.github.com/repos/kingBook/testGit/releases/9028810/assets",
      "upload_url": "https://uploads.github.com/repos/kingBook/testGit/releases/9028810/assets{?name,label}",
      "html_url": "https://github.com/kingBook/testGit/releases/tag/2.0",
      "id": 9028810,
      "tag_name": "2.0",
      "target_commitish": "master",
      "name": "testGit v2.0",
      "draft": false,
      "author": {
        "login": "kingBook",
        "id": 4969180,
        "avatar_url": "https://avatars3.githubusercontent.com/u/4969180?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/kingBook",
        "html_url": "https://github.com/kingBook",
        "followers_url": "https://api.github.com/users/kingBook/followers",
        "following_url": "https://api.github.com/users/kingBook/following{/other_user}",
        "gists_url": "https://api.github.com/users/kingBook/gists{/gist_id}",
        "starred_url": "https://api.github.com/users/kingBook/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/kingBook/subscriptions",
        "organizations_url": "https://api.github.com/users/kingBook/orgs",
        "repos_url": "https://api.github.com/users/kingBook/repos",
        "events_url": "https://api.github.com/users/kingBook/events{/privacy}",
        "received_events_url": "https://api.github.com/users/kingBook/received_events",
        "type": "User",
        "site_admin": false
      },
      "prerelease": false,
      "created_at": "2017-05-03T08:34:10Z",
      "published_at": "2017-12-26T06:01:54Z",
      "assets": [
    
      ],
      "tarball_url": "https://api.github.com/repos/kingBook/testGit/tarball/2.0",
      "zipball_url": "https://api.github.com/repos/kingBook/testGit/zipball/2.0",
      "body": "这是第二个版本"
    }
  • 相关阅读:
    AS400一些有用的命令
    Publish的时候某些需要用到的文件没deploy上去
    DB2一些SQL的用法
    根据PostgreSQL 系统表查出字段描述
    linux memcached 安装
    CentOS下XEN虚拟服务器安装配置
    Apache the requested operation has failed
    PHP配置兼容ZendDebugger和Optimizer
    虚拟机比较
    memcache 运行情况,内存使用
  • 原文地址:https://www.cnblogs.com/kingBook/p/8117861.html
Copyright © 2020-2023  润新知