Heya, On Tue, Aug 9, 2011 at 00:56, Junio C Hamano <gitster@xxxxxxxxx> wrote: > Would we have the same issue with "git bundle", by the way, caused by the > same setup_revisions() limitation? Over there we would also need to > decide the set of refs that the user wanted to record their values while > computing the set of commits we would need to transfer. I think so. $ git init test && cd test Initialized empty Git repository in /home/sverre/code/test/test/.git/ $ echo content >> file $ git add file && git commit -m "first" [master (root-commit) c7f5a27] first 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 file $ (git init ../another && cd ../another && git pull ../test) Initialized empty Git repository in /home/sverre/code/another/.git/ remote: Counting objects: 3, done. remote: Total 3 (delta 0), reused 0 (delta 0) Unpacking objects: 100% (3/3), done. >From ../test * branch HEAD -> FETCH_HEAD sverre@laptop-sverre:~/code/test $ git branch second $ git bundle create bundle second Counting objects: 3, done. Writing objects: 100% (3/3), 215 bytes, done. Total 3 (delta 0), reused 0 (delta 0) sverre@laptop-sverre:~/code/test $ mv bundle ../another/ $ (cd ../another/ && git bundle unbundle bundle) c7f5a273b11a438bf78aecff0dfcbb8b16344555 refs/heads/second $ (cd ../another/ && git for-each-ref) c7f5a273b11a438bf78aecff0dfcbb8b16344555 commit refs/heads/master -- Cheers, Sverre Rabbelier -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html