I'm writing a tool to backup all my repositories from Bitbucket (which supports Git and Mercurial) to my local machine.

It already works for Mercurial, where I do it like this:

  • create a new empty repository without a working copy on the local machine
    (the same like a bare Git repository)
  • pull from the remote repository into the local empty repository

Now I'm trying to do the same with Git.

I already found out that I can't directly pull to a bare repository and that I should use fetch instead.

So I tried it:

C:\test>git fetch https://github.com/SamSaffron/dapper-dot-net.git
remote: Counting objects: 1255, done.
remote: Compressing objects: 100% (1178/1178), done.
remote: Total 1255 (delta 593), reused 717 (delta 56)
Receiving objects: 100% (1255/1255), 13.66 MiB | 706 KiB/s, done.
Resolving deltas: 100% (593/593), done.
From https://github.com/SamSaffron/dapper-dot-net
 * branch            HEAD       -> FETCH_HEAD

Obviously Git did fetch something, but the local repository is empty after that.
(git log says fatal: bad default revision 'HEAD')

What am I doing wrong?

Disclaimer:
I have only very, very basic Git knowledge (I usually use Mercurial).
And I'm using Windows, if that matters.

link|improve this question

possible duplicate of git log and show on a bare repo – CharlesB Oct 25 '11 at 21:02
@CharlesB: None of the answers in this link work for me. Not even things like git branch -va that worked for the asker, not the suggested git log branchname (I tried master), nor the "To visualize everything in the repository..." command at the end of the answer. – Christian Specht Oct 25 '11 at 21:30
feedback

2 Answers

up vote 2 down vote accepted

Try

git fetch https://github.com/SamSaffron/dapper-dot-net.git master:master

Please note:git fetch does not merge changes into your repository. You have to run git merge after running fetch. Or you can also run git pull which runs fetch and merge. If you want to be specific on the branch you are pulling - ex. master - run git pull origin master

link|improve this answer
This only seems to fetch the master branch (I just tried it with github.com/dontangg/nocco, because Dapper has no other branches). Is it possible to fetch all branches? This will be a backup tool, and of course I want to back up everything that is there. – Christian Specht Oct 25 '11 at 21:19
Something like "*:*" or "refs/heads/*:refs/heads/*" should do. – Michael Krelin - hacker Oct 25 '11 at 21:20
*:* doesn't work for me (fatal: Invalid refspec '*.*'), but refs/heads/*:refs/heads/* does the trick. Thank you! – Christian Specht Oct 25 '11 at 21:34
I think it depends on git version, then. – Michael Krelin - hacker Oct 25 '11 at 21:42
Do you know a link where the differences between the Git versions are explained? It worked on a machine with Git 1.7.7, but the machine I'm using now has Git 1.6.5.1, and I can't get fetch to work at all. I'd really like to see a reference that tells me which command works with which Git version. Thank you! – Christian Specht Nov 4 '11 at 20:34
show 1 more comment
feedback

I think you if you really want to backup. You can try $ git clone --mirror XXXX command. it will get almost everything from repository. Hope it is helpful.

link|improve this answer
Yes, but I want the backup to run regularly. So after the first run, the local repository already exists --> I have to run pull/fetch/whatever anyway and make sure that this pulls everything as well. – Christian Specht Oct 26 '11 at 5:40
After you mirrored you bare. you can use 'git fetch --all --progress -v' to update your local bares. – Enchanter Thunderbird Oct 26 '11 at 22:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.