Re: tags not present in bare clone
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:53:39
Patricia Bittencourt Egeland [off-list ref] writes:
I'm trying to create a bare clone from a regular repo (all
locally; in the same machine). However a tag created in the
regular repo can't be found in the fresh bare clone. I
expected that the tags would also be present just like anything
from "refs". Am I wrong about that?
Reproduction recipe???
A simple and straightforward attempt to reproduce what you said you did
in your message does not exhibit any problem.
$ mkdir -p /var/tmp/junk && cd /var/tmp/junk
$ git init src && cd src
Initialized empty Git repository in /var/tmp/junk/src/.git/
$ echo frotz >xyzzy && git add xyzzy && git commit -m initial
[master (root-commit) b9c684a] initial
1 file changed, 1 insertion(+)
create mode 100644 xyzzy
$ echo nitfol >xyzzy && git commit -a -m second
[master 6982d52] second
1 file changed, 1 insertion(+), 1 deletion(-)
$ git tag -a -m 'First revision' v1.0 HEAD^
$ git tag -a -m 'Second revision' v2.0 HEAD
$ git for-each-ref
6982d523f08b93dc6862ae80e80065b208d0ba85 commit refs/heads/master
33a6b315ffb461cba32d84ecd1692525a0846f5a tag refs/tags/v1.0
0d3f9dce20e28c6898423eb4a2c2010908e46a6c tag refs/tags/v2.0
$ cd ../ ;# back at /var/tmp/junk
$ git clone src dst
Cloning into 'dst'...
done.
$ cd dst
$ git for-each-ref
6982d523f08b93dc6862ae80e80065b208d0ba85 commit refs/heads/master
6982d523f08b93dc6862ae80e80065b208d0ba85 commit refs/remotes/origin/HEAD
6982d523f08b93dc6862ae80e80065b208d0ba85 commit refs/remotes/origin/master
33a6b315ffb461cba32d84ecd1692525a0846f5a tag refs/tags/v1.0
0d3f9dce20e28c6898423eb4a2c2010908e46a6c tag refs/tags/v2.0