Cu1ture
Cu1ture

Reputation: 1283

Why is the Git version I install with Homebrew different from the version on the website?

When I installed Git with Homebrew it shows as version 1.8.5.2 but on the website the download is for 2.0.1.

Why is Homebrew installing a different version of Git?

Upvotes: 3

Views: 2490

Answers (1)

VonC
VonC

Reputation: 1325397

Make sure the pre-installed git path (/usr/bin/git) isn't before the one installed by brew (/usr/local/bin/git).

Check if /usr/local/bin/git --version returns the expected version.
Or /usr/local/git/bin/git --version.

See more at:

Upvotes: 1

Related Questions