背景:mac系统下安装git成功后,还要提示安装xcode,原因是mac系统区别于windows等系统,xcode是mac开发的基础必要软件。
我安装完git后,检查下git版本,提示1如下:
$ git version
xcode-select: note: no developer tools were found at '/Applications/Xcode.app', requesting install. Choose an option in the dialog to download the command line developer tools.
可能也会提示:
-> git
xcrun: error: active developer path ("/Applications/Xcode.app/Contents/Developer") does not exist, use `xcode-select --switch path/to/Xcode.app` to specify the Xcode that you wish to use for command line developer tools (or see `man xcode-select`)
背景:mac系统下安装git成功后,还要提示安装xcode,原因是mac系统区别于windows等系统,xcode是mac开发的基础必要软件。我安装完git后,检查下git版本,提示1如下:$ git versionxcode-select: note: no developer tools were found at '/Applications/Xcode.app', req
首先,你可以试着输入
git
,看看系统有没有
安装
Git
:
$
git
The program '
git
' is currently not installed. You can install it by typing:
sudo apt-get install
git
像上面的命令,有很多Linux会友好地告诉你
Git
没有
安装
,还会告诉你如何
安装
Git
。
如果你碰巧用Debian或Ubuntu Linux,通过一条 sudo apt-get i
安装
homebrew时报错
具体错误:
no developer tools were found at ‘/Applications/
Xcode
.app’, requesting install.
Choose an option in the dialog to download the command line developer tools.
报错原因:
mac
没有装
xcode
,
xcode
居然有11个G
解决方法:其实不需要下
xcode
,只需要下一个
xcode
的管理工具(个
最近刚接触
mac
电脑, 计划搭建下开发环境, 印象中
mac
电脑自带
git
。但真实操作给了我重重的一击。
出现报错信息:
xcode
-select: note: no developer tools were found at '/applications/
xcode
.app',
requesting install. choose an option in the dialog to download the command line developer tools.
网上搜索资料,是因为苹果升级了系统
xcode
-select: note: no developer tools were found at '/Applications/
Xcode
.app', requesting install. Choose an option in the dialog to download the command line developer tools.
打开https://developer.apple.com/download/more/
下载Command Line Tools for
Xcode
.
xcode
-select: note: no developer tools were found at '/Applications/
Xcode
.app',
requesting install. Choose an option in the dialog to download the command line
developer tools.
①、获取
git
hub最新的
Git
安装
包;
②、压缩包解压,命令为: tar -zxvf v2.17.0.tar.gz ;
③、
安装
编译源码所需依赖,命令为: yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-MakeMaker 耐心等待
安装
,出现
提示
输入y即可;
④、
安装
依赖时,yum自动
安装
了
Git
,需要卸载旧版本
Git
,命令为: yum remove
git
出现
提示
输入y即可;
⑤、进入解压后的文件夹,命令 cd
git
-2.17.0
二.GlitBli搭建
三.
Git
搭建
阅读本文前建议先阅读另一篇关于Windows环境下的
Git
Blit部署,之后在Linux上会熟练很多哦(⊙o⊙)。传送门:Windows 10环境下
Git
Blit 部署
这里采用的是Linux的发行版之一:CentOS(Community Enterprise Operating System,中文意思是:社区企业操作系统)
首先做以下几步:
1.最好使用root用户登录,免去之后的一些权限困扰;
2.在系统主文件夹的用户文件夹(usr)下创建名为java的文件夹(位置/名称都可以自己定),作为这次任务的父文件夹;
3.在刚创建
以前用Eclipse、MyEclipse这两个开发工具,最近听说很多企业在用IDEA,各种的完爆Eclipse,最近几天我就去研究了下,再次记录下,有繁琐的、有便捷的,反正是各有长处把,现在来分享下这几天用的心得:
1、下载好IDEA 14 打开后是这个界面:
2、首先我们拿到一个新的IDEA就会问怎么从svn上下载项目,楼楼刚下载完想到的也是这个,于是就开始看,因为是从官方下的是全英文版
现在使用idea作为开发工具已经是普遍了,不知道各位使用这么久知道idea如何打开最近访问过的文件吗,今天要告诉大家的是如何打开最近访问项目和同一个项目名称不同分支打开最近访问项目名重复的解决方案
idea如何打开最近访问项目列表
非常简单:File -> Open Recent
项目名称相同不同分支显示重复,如何解决
相信大家用过open recent都知道挺好用不用每次...
在
Mac
OS中,
Xcode
自带
Git
版本控制系统。如果你已经
安装
了
Xcode
,那么你就已经拥有了
Git
。如果你需要使用
Git
Diff来显示
Git
仓库和
Xcode
源代码编辑器保存的代码文件的不同之处,你需要在终端中输入以下命令来
安装
Command Line Tools:
xcode
-select --install
根据
提示
一步一步执行就行,直到成功。这样就可以使用
Git
Diff来比较
Git
仓库和
Xcode
源代码编辑器保存的代码文件的不同之处了。