92
$ git clone
$ git checkout tags/<tag_name>
$ git checkout tags/<tag_name> -b <branch_name>
88
git clone --branch my_abc http://git.abc.net/git/abc.git
80
git clone -b 'v2.0' --single-branch --depth 1 https://github.com/git/git.git
60
git clone http://git.abc.net/git/abc.git cd abc git checkout my_abc
git clone http://git.abc.net/git/abc.git cd abc git checkout -b new_branch my_abc
56
git archive --format=tar --remote=[hostname]:[path to repo] [tag name] > tagged_version.tar
git tag 0.0.1 0.1.0
git archive -o /tmp/my-repo-0.1.0.zip --prefix=my-repo-0.1.0/ 0.1.0