I have a project that has tags to indicate versions.
How do you get a copy of an entire project by a tag named 'v1.0', without overwriting an existing project files.
I've searched a lot (including SO) but couldn't get an answer. Just please supply a good example. THX
Edit #1 (23 Nov 2013, 23:25 UTC):
To elaborate:
I have a project in a local directory on my PC.
The project has been there since it was started, means I executed git init
(not git clone
or anything like that).
From time to time I tagged some commits to indicate version (means that tag name was something like 'vX.Y' where 'X' and 'Y' is a number).
Now, I want to get a copy/image of the entire project as it was existed by using a tag name, without overwriting the existing files (so that my progress won't be deleted).
I need that copy in order to make some tests with older version.