-
Notifications
You must be signed in to change notification settings - Fork 1
Installing Git: Mac
Homebrew is a package manager for OSX, which allows you to install a lot of different tools without having to worry about where to find them or how to add them to your PATH
. Simply open up your terminal (you can find it in Spotlight, or by looking in your Applications folder) and run the below command and you'll be on your way!
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
That's it! Once Homebrew is finished installing, move onto the next step
Git
happens to be one of Homebrew's many awesome packages. To get Git installed on your computer, simply run the following in your terminal:
brew install git
Boom. Git installed. Two commands. Mind = blown. 💥
Git has a graphical installer for OSX that you can find here. It might be an easier option for some users, however we still recommend Homebrew because you'll likely need to install it sooner or later, and it makes it really easy to update to a newer version in the future.
Now that Git is installed on your system, check out our beginner project to get familiar with how it works!
- Beginner Level