如何在本地git分支中使用不同于主分支的标记

时间:2017-03-10 14:26:28

标签: git git-tag

我希望为releasemaster分支设置不同的标记。我想知道怎么做?

我有一个标签为2.2.2-crown的git release分支。当我创建release分支时,master分支似乎从我的$(master): git tag 2.2.2-crown 分支继承了该标记。

$git checkout -b release_branch
$git tag v3.1
$git tag
2.2.2-crown  <--------------I don't want this tag in my release branch
v3.1        

我创建了一个分支,

div#shortcode-wpcc-widget- {

    background-color: #f4f4f4;
    padding: 20px;
    margin-top: 10px;
}
input#wpcc_convert {

    background-color: #e44049;
    color: white;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
input#wpcc_convert:hover {

    background-color: #e62732;
    color: white;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
div#shortcode-wpcc-widget- h3 {

    color: #e44049;
}
select#wpcc_currency_from {

    padding: 5px;
}
select#wpcc_currency_to {

    padding: 5px;
}
input#wpcc_currency_amount {

    padding: 5px;
}

我只想让发布标签不是主标签。

1 个答案:

答案 0 :(得分:2)

git标签不是每个分支。标签只是引用,就像分支一样,指向git历史的一个提交。

您最好为自己的代码命名&#39;发布/ v3.1&#39;。

git tag命令将始终列出所有内容。