I’d like to be able to do some development work on public/borrowed computers (where I have no root privileges) and I’ve managed to get most of my tools working off of a USB stick but I still haven’t found a Git solution.
The portable versions of Git that I have found are Windows-only. Do you know of any Mac alternatives?
EDIT: I’ve gotten a few suggestions to just copy my current installation of git from /usr/bin and put that on a USB drive. That’s a great idea but I don’t have a current installation of git to copy from. I won’t have my own computer back for a couple of weeks.
Would you happen to know where I could grab a pre-compiled version of git for OSX? I don’t have access to homebrew or… anything really. Ideally I could just grab a zip file from somewhere and dump it on my USB stick.
I’ve managed to put together a solution based on ideas from several different people (thanks to all of you):
etcandgitfolders that were just unpacked onto your USB stick.Now, whenever you plug in your USB stick, just make sure to put the location of the
gitdirectory on yourPATH(like this:export PATH=$PATH:/path/to/git/on/usb/stick) and you’ll be good to go!NOTE: I’ve tested many of the
gitcommands using this method and most seem to work without any issues. However,git initwill complain like this:warning: templates not found /usr/local/git/share/git-core/templates. Not surprising since the templates are actually on your USB stick and not/usr/local. Despite this warning my repos seem to be working just fine.