* Clean master, version tags
@ 2008-05-19 2:21 Marcus
2008-05-19 2:31 ` Shawn O. Pearce
0 siblings, 1 reply; 2+ messages in thread
From: Marcus @ 2008-05-19 2:21 UTC (permalink / raw)
To: git
I created a lot of test files in the master, branch before Iearning
how to use branches. How do I safely remove all entries in master. The
branch should can be completely cleaned and leave no traces, so we
have a fresh start.
2) Is there a tutorial on how to tag versions and use the version name
as reference?
Thanks,
Marcus
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Clean master, version tags
2008-05-19 2:21 Clean master, version tags Marcus
@ 2008-05-19 2:31 ` Shawn O. Pearce
0 siblings, 0 replies; 2+ messages in thread
From: Shawn O. Pearce @ 2008-05-19 2:31 UTC (permalink / raw)
To: Marcus; +Cc: git
Marcus <prima@wordit.com> wrote:
> I created a lot of test files in the master, branch before Iearning
> how to use branches. How do I safely remove all entries in master. The
> branch should can be completely cleaned and leave no traces, so we
> have a fresh start.
A couple of ways.
You can checkout the branch, then forcibly reset both the branch
and your working directory to some other revision, like say
origin's master. Note this will overwrite any modified but not
committed files!
git checkout master
git reset --hard origin/master
or delete the branch and recreate it:
git branch -D master
git branch --track master origin/master
or just delete the branch and don't even have a master:
git branch -D master
> 2) Is there a tutorial on how to tag versions and use the version name
> as reference?
Read git-tag's manpage. Creating a tag is as easy as:
git tag -a tagname
then you can later go back to that version with:
git checkout tagname
if you have that version checked out you can find out what the
tag name was:
git describe
you can also export that version as a tarball, even if you don't
have it checked out:
git archive --format=tar tagname | gzip >tagname.tar.gz
Does that help any? Tag names are treated almost like any other
revision identifier (commit SHA-1, branch name, etc.) in git.
--
Shawn.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-05-19 2:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-19 2:21 Clean master, version tags Marcus
2008-05-19 2:31 ` Shawn O. Pearce
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).