What is the best way to back up an entire git repository on external disk?

六眼飞鱼酱① 提交于 2019-11-28 23:16:28

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.

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.

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.

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)

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

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!