I need to merge two repos using Gitolite, I recall seeing some instructions somewhere but can’t find them.
Should the combining (merging) be done in Gitolite or on another machine?
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.
Gitolite is only an authorization layer.
It is doing nothing more than allowing or denying
git pull/push/clonecommands, based on authentication and VREFs (update hooks).You can merge two repo locally with git commands (see “How do you merge two git repositories?“), and then push to your Gitolite server.
Gitolite will be used only to declare, if needed, a third repo to get the result of the merge (unless you are directly modifying one of the two repo with the other)