I’m trying to “portablize” git, so I want to send the required executables from the make process of git to my hosted web server. Can I do that? Do you think the executables will work?
Share
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.
The way I do it is to:
--prefix=/home/myuserand install them in theusr/local/libof my home directoryI can then copy only
/home/myuser/gitand/home/myuser/usr/local(and$prefix/libexec/git-coreas Jakub mentions in the comments) to any other similar server, knowing it will work in isolation from any existing system libraries.