ChatGPT解决这个技术问题 Extra ChatGPT

How to create a new branch from a tag?

I'd like to create a new master branch from an existing tag. Say I have a tag v1.0. How to create a new branch from this tag?

possible duplicate of Checkout GIT tag

A
Andrew

Wow, that was easier than I thought:

git checkout -b newbranch v1.0

Correct. Note you also could have just set the master branch back to the point of the tag with git reset --hard v1.0
If this doesn't work because of "<tag> is not a valid commit" or a similar error (often when working on a shared repository), refer to stackoverflow.com/questions/35979642/…
The suggestion from @wadesworld could work, but if anyone reads this and isn't 100% sure what it means to reset the master branch, don't do that.
This is a better answer that I found here - stackoverflow.com/a/35979751/3145960
J
Jacek Laskowski

If you simply want to create a new branch without immediately changing to it, you could do the following:

git branch newbranch v1.0

I think this should be the accepted answer as it does exactly what is required. The accepted answer does something else not stated in the question.
B
BuZZ-dEE

I used the following steps to create a new hot fix branch from a Tag.

Syntax

git checkout -b <New Branch Name> <TAG Name>

Steps to do it.

git checkout -b NewBranchName v1.0 Make changes to pom / release versions Stage changes git commit -m "Update pom versions for Hotfix branch" Finally push your newly created branch to remote repository.

git push -u origin NewBranchName

I hope this would help.


K
Kirtikumar A.

I have resolve the problem as below 1. Get the tag from your branch 2. Write below command

Example: git branch <Hotfix branch> <TAG>
    git branch hotfix_4.4.3 v4.4.3
    git checkout hotfix_4.4.3

or you can do with other command

git checkout -b <Hotfix branch> <TAG>
-b stands for creating new branch to local 

once you ready with your hotfix branch, It's time to move that branch to github, you can do so by writing below command

git push --set-upstream origin hotfix_4.4.3

If you last release was v4.4.3, shouldn't your new branch be called hotfix_4.4.4
p
peterh

The situation becomes a little bit problematic if we want to create a branch from a tag with the same name.

In this, and in similar scenarios, the important thing is to know: branches and tags are actually single-line text files in .git/refs directory, and we can reference them explicitly using their pathes below .git. Branches are called here "heads", to make our life more simple.

Thus, refs/heads/master is the real, explicit name of the master branch. And refs/tags/cica is the exact name of the tag named cica.

The correct command to create a branch named cica from the tag named cica is:

git branch cica refs/tags/cica

a
amdev

An exemple of the only solution that works for me in the simple usecase where I am on a fork and I want to checkout a new branch from a tag that is on the main project repository ( here upstream )

git fetch upstream --tags

Give me

From https://github.com/keycloak/keycloak
   90b29b0e31..0ba9055d28  stage      -> upstream/stage
 * [new tag]    11.0.0     -> 11.0.0

Then I can create a new branch from this tag and checkout on it

git checkout -b tags/<name> <newbranch>

git checkout tags/11.0.0 -b v11.0.0

e
eranga

My branch list (only master now)

https://i.stack.imgur.com/Ncp23.png

My tag list (have three tags)

https://i.stack.imgur.com/r1ugn.png

Switch to new branch feature/codec from opus_codec tag

git checkout -b feature/codec opus_codec

https://i.stack.imgur.com/FesiL.png


Please don't use screenshots if also text copy-paste would be enough.