I'm burning my stuff on a dvd, before a quick reinstall. Never done that with git, being a recent user. So I'm just checking with you guys. If I understood correctly, I just need to backup my project directory project_name (which has .git inside it) watching for hidden files along with it, and when I copy it onto the "new" machine, and install git again, I resume like nothing happened ? Correct ?
- The main advantage of the bundle is its ability to bundle only part of the history of the main repo, allowing you to make incremental saves and to apply them incrementally on the destination. Plus, its one file to copy.VonC– VonC2010-01-12 16:53:04 +00:00Commented Jan 12, 2010 at 16:53
2 Answers
If you only want to backup project files (without history), you can use git archive (that way, I do not have to "watch for hidden file")
The script git-archive-all.sh will actually archive all git repositories and submodules in the current path.
Useful for creating a single tarfile of a git super-project that contains other submodules.
As Charles Bailey rightly mentions in the comments, git bundle is more appropriate, to preserve the history. (git bundle was introduced in February 2007).
See Backing up a git repository with git bundle
git bundlewas designed to allow transfer of git commits when there is no direct connection between repositories (i.e.: offline) but using patches is not an option because of the large number of commits and multiple branches.
Agit bundleis just one file which can be very easily created and again imported as it can be treated like another remote. A quick example:
jojo@dualtron:~/devel$ git bundle create ~/devel.bdl master test and a bundle is saved under
~/devel.bdlcontaining my master and test branches.
If I am now at repository B I just usejojo@dualtron:~$ git ls-remote devel.bdlwhich shows me the branches stored in the bundle.
To use the bundle I simple treat it like a remote, using git fetch (for example)
jojo@dualtron:~/git/repoB$ git fetch ~/devel.bdl refs/heads/\*:refs/remotes/bundle/\* 4 Comments
git bundle is more appropriate than git archive. git archive just creates tarballs of trees (snapshots) but doesn't preserve commits and history. git bundle create without any dependencies can be a freeze dried repository of as many branches as you like.yep. that's right.
3 Comments
git bundle seems like a better option according to other answers here, if backing up files manually, surely only the .git folder needs to be backed up? Can the current state of any branch be reconstituted properly from just that folder's contents?