I need to move Git to a new location and was wondering if there's a way to just rsync my git repository to a new location?

link|improve this question
feedback

3 Answers

rsync, or just clone, as git clones are complete copies of (the reachable parts of) the source repository.

link|improve this answer
2  
git-clone would be safer. To use rsync you would need to stop all other access to the repository first to ensure rsync can produce a consistent copy at the other end. – David Spillett Apr 25 '10 at 11:44
feedback

I am no git expert, but where do you see the problem in doing exactly that? Of course, you will need to inform the users about this change and if it's not your machine, talk to the admin to set up the server part, but other than that, git repos are just directories with some (or a lot) files.

link|improve this answer
feedback

A simple scp -r will do the trick just fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.