19

So I want to be able to back up a git repository that may have several branches onto an external hard drive and then be at a later time be able to copy it back onto my local machine and work with it as usual? I have tried simply copying the working directory folder containing the .git directory and it worked. However, I was wondering if this was the best way or if it had pitfalls later.

racl101
  • 3,760
  • 4
  • 34
  • 33

6 Answers6

21

Copying the entire working copy using regular file system copy commands works fine. You can also zip/tar the backup.

If you are worried about disk space, you can also look at "git bundle", which could produce smaller files.

You can also get incremental backups by just starting a new repo on the external disk (git clone) and then pull the changes every time (git pull). There is not much difference between a backup and a working copy in a distributed system like git.

Thilo
  • 257,207
  • 101
  • 511
  • 656
7

If you don't have any changes to back up in your work tree, you can use git clone --mirror to create a bare clone with all refs (branches, tags, absolutely everything) copied verbatim. You can then use git push --mirror to keep it up to date incrementally. This is what it's designed for.

Copying the entire repo, including the work tree, works as well, but it's a bit of a pain to do incrementally, and obviously takes up more space.

Cascabel
  • 479,068
  • 72
  • 370
  • 318
3

That's about the only way to do it, short of cloning the repository onto the external disk. But either approach is approximately equivalent, except that copying your clone will preserve any repo-specific config settings.

cdhowie
  • 158,093
  • 24
  • 286
  • 300
2

Summarizing,

  • You can just copy the damn directory, sure it works.
  • You can clone.
  • You can git bundle or git archive

You can also,

which you can dump into a single file that you can import later from.

$ git fast-export --all | (cd /empty/repository && git fast-import)
lprsd
  • 84,407
  • 47
  • 135
  • 168
1

There is no pitfall here, git is a fully distributed SCM. Copying a working copy with the .git directory is sufficient backup.

RageZ
  • 26,800
  • 12
  • 67
  • 76
1

Copying the whole thing or using a sync tool is fine. The repo is fully contained and portable.

Jay
  • 56,361
  • 10
  • 99
  • 123