Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any portable versions of Git for Mac OSX?

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.

like image 583
Jen Garcia Avatar asked Jan 22 '13 19:01

Jen Garcia


People also ask

Does macOS have Git?

Git can be installed on the most common operating systems like Windows, Mac, and Linux. In fact, Git comes installed by default on most Mac and Linux machines!

Does GitBash work on Mac?

Bash is an acronym for Bourne Again Shell. A shell is a terminal application used to interface with an operating system through written commands. Bash is a popular default shell on Linux and macOS. Git Bash is a package that installs Bash, some common bash utilities, and Git on a Windows operating system.

What is the latest version of Git for Mac?

The latest version is 2.33.0, which was released about 1 year ago, on 2021-08-30.


1 Answers

I've managed to put together a solution based on ideas from several different people (thanks to all of you):

  • Download the Git binary for Mac OSX from git-scm.com. The downloaded DMG contains a PKG file.
  • Unpack the PKG file with unpkg or something similar. (This step is necessary because normally PKG files can only be installed with root privileges.)
  • Drop the etc and git folders 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 git directory on your PATH (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 git commands using this method and most seem to work without any issues. However, git init will 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.

like image 121
Jen Garcia Avatar answered Sep 28 '22 10:09

Jen Garcia