Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为我的项目安装 RestKit,但是在第一步中,当我想使用终端添加 git 子模块时,它给了我这个错误:
command not found
这是我输入的代码:
$ cd /path/to/MyApplication $ git init $ git submodule add git://github.com/RestKit/RestKit.git $ open RestKit
第一行代码有效,但是当我输入第二行时,它给了我错误,任何人都可以帮助我!
在最新版本的 XCode4 中,命令行工具(如 git)默认不安装。如果您进入“首选项”菜单,您可以从那里安装命令行实用程序。安装后您可能需要重新启动终端。
您应该首先为您的操作系统安装git 。
就像apt-get install git在 ubuntu 或brew install gitOSX 中一样
apt-get install git
brew install git