From: Hallvard Breien Furuseth <h.b.furuseth@usit.uio.no>
To: karunakar merugu <karuna.linux@gmail.com>
Cc: <git@vger.kernel.org>
Subject: Re: branching based on tag.
Date: Fri, 04 May 2012 11:53:56 +0200 [thread overview]
Message-ID: <d0a5c7b492d53912d12f25ba6f8fe828@ulrik.uio.no> (raw)
In-Reply-To: <CABECqUE-WqnR_wQzMsuEFmUu86_9i+GnJdEKYXwB+WancTFnOA@mail.gmail.com>
On Fri, 4 May 2012 14:48:58 +0530, karunakar merugu wrote:
> git tag -l
> it gives me the lot of tags.I just want to work on some specific
> tag.Is it possible for me to create separate branch on that specific
> tag.
Start a new branch from the tag, and check that
branch out so you can work in it:
git checkout -b your-new-branch tagname
This is shorthand for the two commands
git branch your-new-branch tagname
git checkout your-new-branch
You should probably not move the tag, though you
can with the 'git tag' command.
--
Hallvard
prev parent reply other threads:[~2012-05-04 9:54 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-04 9:18 branching based on tag karunakar merugu
2012-05-04 9:53 ` Hallvard Breien Furuseth [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d0a5c7b492d53912d12f25ba6f8fe828@ulrik.uio.no \
--to=h.b.furuseth@usit.uio.no \
--cc=git@vger.kernel.org \
--cc=karuna.linux@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).