> Suppose I have a git repository on another server, with a local copy. > Just like if I had cloned a github repo.
Or any other bare repo, for that matter. Are you specifically trying to (inexplicably) avoid using GitHub? > Is there a simple way to do a backup of my local repository state to > some other machine. Mostly because I don't like having the only copy > of local work in one place. If the bare repository is setup correctly (as GitHub is out of the box), a simple `git push <remote name> <branch>` will do the trick. However, version control is not a backup tool, and if you're worried about syncing local _uncommitted_ repo state, then you're probably better off looking into rsync, webdav, or similarly hare-brained scheme. Or, you know, use GitHub. ;) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GitHub" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/github?hl=en -~----------~----~----~----~------~----~------~--~---
