git常用指令(一)
git常用指令(二)
git常用指令(四)
13.镜像源安装指定cocoapods版本
sudo gem install cocoapods -v 1.9.1
14.卸载cocoapods
sudo gem uninstall cocoapods -n /usr/local/bin cocoapods
15.设置什么代理协议没啥用
16.cocoapods地址
cd ~/.cocoapods/repos
17.查看本地git配置内容
git config --global --list
18.移除镜像源
gem sources --remove https://rubygems.org
19.添加镜像源
gem sources --add https://gems.ruby-china.com/
2022.03.22更新
20.git clone时出现以下内容证明你在生成ssh文件时设置了密码,需要输入当时设置的密码才可以
Enter passphrase for key '/Users/***/.ssh/id_rsa'
21.修改ssh的密码
(1)cd /Users/***/.ssh
(2)ssh-keygen -p
出现Enter file in which the key is (/Users/***/.ssh/id_rsa):直接回车
(3)然后按步骤操作即可
22.如果忘了之前的密码,可以选择重新生成ssh即可
23.生成ssh推荐文档
ssh生成
24.mac环境变量配置
vim ~/.bash_profile
vim ~/.zshrc
刷新.bash_profile的新配置
source ~/.bash_profile
25.zshrc和bash_profile的区别
zshrc是全局的,mac启动时会执行是全局有效的
bash_profile只在当前窗口有效,而且还需要执行source ~/.bash_profile
才行
所以我们可以将.bash_profile中的配置内容放到.zshrc中
26.zshrc全局可以设置,也可以为某个具体项目设置配置
27.git出现ssl443错误
LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
解决方法有很多,我这是其中一种通过修改hosts文件
1.打开hosts文件
sudo vim /private/etc/hosts
2.对以下几个地址进行编辑即可
140.82.112.4 github.com
199.232.69.194 github.global.ssl.fastly.net
185.199.108.153 assets-cdn.github.com
185.199.108.133 avatars0.githubusercontent.com
185.199.109.133 avatars1.githubusercontent.com
185.199.110.133 raw.githubusercontent.com
注意以上的地址可能会随时变化,过段时间不行了可以选择重新查询ip地址
如以上均未解决,建议去官方地址或者Gitee查看资料
28.pod install 出现podfile.lock中的内容改变
这个时候大概率是git.spec有毛病,可以将podfile.lock中新增的内容去除,然后在pod install,或者先更新本地spec文件,再pod install
2023.01.12更新
podfile.lock文件内容改变是因为触发了更新操作导致的,可以排查新增的库里面的依赖版本是否和本地之前安装的一致。正常情况执行install不会更新podfile.lock
29.vim 创建文件
vim tal.sh
30.git更新本地spec文件
pod repo update
31.每次都要求输入密码Enter passphrase for key '/Users/***/.ssh/id_rsa
在终端执行ssh-keygen -p
将密码设置为空即可(回车键)