在Macbook上安装WWW开发系统
我尝试将 git 和 Mamp 安装到我的 Macbook 上。安装Mamp后,我在applications文件夹下发现了一个新文件夹。但是当我安装git时,我在applications文件夹下没有找到它。我做的一切都正常吗?如何测试 git 是否正常工作?
I tried to install git and Mamp to my Macbook. After I installed Mamp, I found a new folder under the applications folder. But as I installed git, I didn't find it under the applications folder. Am I doing everything OK and how can I test if git works correctly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
git 是一个命令行应用程序。打开终端并输入 git,然后按 Return。
它应该打印一些帮助,类似于:
如果它说
command not find
,那么要么它没有安装,要么不在 PATH 中。git is a command line application. Open Terminal and type git, followed by Return.
It should print some help, similar to:
If it says
command not found
, then either it is not installed, or not in the PATH.