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?
The way I do it is to:
--prefix=/home/myuser
and install them in the usr/local/lib
of my home directoryI can then copy only /home/myuser/git
and /home/myuser/usr/local
(and $prefix/libexec/git-core
as Jakub mentions in the comments) to any other similar server, knowing it will work in isolation from any existing system libraries.