Re: backup git repo on every commit

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Israel Garcia <igalvarez@xxxxxxxxx> wrote:
> That's OK, but I want to backup my git repo locally 

Just change the path of the backup remote (that final argument to
git remote add) to point to the local directory.

Though I guess you would also need to run git init there, e.g.:

  git --git-dir=/backup/project.git init
  git remote add --mirror backup /backup/project.git

  # and create the hook as below

Of course, backup to another folder on the same disk isn't a backup
at all, the disk can still fail and lose both repositories.

> On 10/12/09, Shawn O. Pearce <spearce@xxxxxxxxxxx> wrote:
> > Israel Garcia <igalvarez@xxxxxxxxx> wrote:
> >> Which is the simplest  way to backup a git repository after every commit?
> >
> > Add a commit hook to push to another location, e.g.:
> >
> >   git remote add --mirror backup you@xxxxxxxxxxxx:path/to/backup.git
> >
> >   cat >.git/hooks/post-commit
> >   #!/bin/sh
> >   git push backup
> >   ^D
> >
> >   chmod a+x .git/hooks/post-commit

-- 
Shawn.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]