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

泪湿孤枕 提交于 2019-11-27 14:37:13

问题


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.


回答1:


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.




回答2:


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.




回答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.




回答4:


Summarizing,

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

You can also,

  • git fast-export : http://www.kernel.org/pub/software/scm/git/docs/git-fast-export.html

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

$ git fast-export --all | (cd /empty/repository && git fast-import)



回答5:


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




回答6:


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



来源:https://stackoverflow.com/questions/4372832/what-is-the-best-way-to-back-up-an-entire-git-repository-on-external-disk

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