What is the best way to back up an entire git repo

2019-01-23 13:35发布

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.

6条回答
手持菜刀,她持情操
2楼-- · 2019-01-23 13:56

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

查看更多
祖国的老花朵
3楼-- · 2019-01-23 13:58

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.

查看更多
SAY GOODBYE
4楼-- · 2019-01-23 13:58

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)
查看更多
Melony?
5楼-- · 2019-01-23 14:03

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

查看更多
欢心
6楼-- · 2019-01-23 14:21

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.

查看更多
孤傲高冷的网名
7楼-- · 2019-01-23 14:22

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.

查看更多
登录 后发表回答