
git
ccmedu
这个作者很懒,什么都没留下…
展开
-
Mac sourceTree 可以拉取githab上面的代码,提交却报push rejected(拒绝)解决方案
无法使用ssh方式提交代码,这是由于没有把公钥对应的私钥提交到ssh,远程服务器端无法通过ssh的密钥验证.因为Mac版本的sourceTree 与window版本的sourceTree 功能上差了window版本上面有对于ssh私钥的配置,而mac版本并没有这个选项,拉取http地址的代码可以成功但是没有经过ssh 秘钥认证,所以提交不上去,我们解决它可以使用ssh地址的去拉取代码,...原创 2018-07-12 11:46:33 · 1586 阅读 · 0 评论 -
mac 上安装git
千辛万苦来形容刚买mac的我。。。从windows转ios,好多行为习惯都得改,1.在官网下载git然后就傻瓜式安装next就行了2.之后打开mac终端输入命令,git --version 如果是出现版本号那么恭喜你,很顺利,如果出现$ git versionxcode-select: note: no developer tools were found at '/Appli...原创 2018-07-05 15:52:33 · 1124 阅读 · 0 评论 -
mac的git忽略文件忽略不了xcode-select --install失败的处理方法(0:综合问题解决方案)
(1)输入如下命令:git rm -r --cached .git add .git commit -m 'update .gitignore' (2)如果报错:xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library...原创 2019-01-28 20:26:15 · 1886 阅读 · 0 评论 -
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), (1:散列问题解决方案)
如果报错:xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun解决办法:输入命令并执行:xcode-select --install这个时...原创 2019-01-28 20:56:57 · 3271 阅读 · 0 评论 -
xcode-select --install选择安装安装失败:下载失败网络问题(2:散列问题解决方案)
问题:xcode-select --install选择安装,安装失败:下载失败网络问题 解决办法:到该地址去手动下载安装器安装:https://idmsa.apple.com/IDMSWebAuth/signin?appIdKey=891bd3417a7776362562d2197f89480a8547b108fd934911bcbea0110d07f757&path=%2Fdow...原创 2019-01-28 20:57:06 · 19538 阅读 · 0 评论 -
fatal: not a git repository (or any of the parent directories): .git(3:散列问题解决方案)
输入如下命令:git rm -r --cached .git add .git commit -m 'update .gitignore'报错如下:fatal: not a git repository (or any of the parent directories): .git 解决办法:输入命令:git init...原创 2019-01-28 20:59:18 · 3980 阅读 · 0 评论 -
fatal: unable to auto-detect email address (got 'root@bogon.(none)')(4:散列问题解决方案)
报错如下:*** Please tell me who you are.Run git config --global user.email "you@example.com" git config --global user.name "Your Name"to set your account's default identity.Omit --global to se...原创 2019-01-28 21:00:31 · 4843 阅读 · 1 评论