0、自己百度生成SSHKEY

查看现在的SSHKEY

cat ~/.ssh/id_rsa.pub

 

配置新的SSHKEY

ssh-keygen -t rsa -C "xxxx@xxxx.com"

 

1、git上添加SSHKEY,添加好了

测试:

ssh -T git@git.XXXX.com

会有成功提示。

 

 

2、通了之后拉代码:

git clone git@199.166.10.33:wangshuyuan/iossongjiangdai.git

或者

git clone http://git.xxxx.com/wangshuyuan/caogendangjia.git

 

git config --global http.postBuffer 524288000

 

 

如果要修改SSHKEY邮箱:


Command line instructions
Git global setup
git config --global user.name "wangshuyuan"
git config --global user.email "shuyuan.wang@xxxx.com"



git config --global http.postBuffer 524288000

相关文章:

  • 2021-06-06
  • 2021-04-26
  • 2021-04-05
  • 2022-01-26
  • 2022-02-09
  • 2021-07-03
  • 2021-04-30
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-07
  • 2021-10-23
  • 2021-08-10
  • 2021-10-26
  • 2022-01-13
  • 2022-12-23
相关资源
相似解决方案