Reputation: 18629
I just downloaded Xcode 5.0.1 which I thought comes with git. But when I do a git command on the command line, I get a file not found.
Would anyone know how I can either add and commit through Xcode, or get the git command to work on my command line?
Upvotes: 0
Views: 114
Reputation: 122381
Install the command line tools, which you can do from the command line itself:
$ xcode-select --install
Upvotes: 1