I have a server that is hosting my ‘bare’ GIT repo for a few projects.
I want to know what it takes to move the GIT to another server?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just copy the parent directory to the new machine and have the checked out copies update their remote with
git remote set-url <remotename> <url>. Once you’ve verified that the users can push/pull properly with the new remote you can delete the copy from the old machine.