GIT 笔记

git 访问github总是提示timeOut,可以通过设置代理解决。 

设置方法:

git config --global https.proxy "https://域账号:密码@proxyhk.huawei.com:8080"

git config --global http.proxy "http://域账号:密码@proxyhk.huawei.com:8080"

如果密码含有特殊字符,需要转义,转义对照表如下: 

SPACE %20

< %3C

> %3E

# %23

% %25

{ %7B

} %7D

| %7C

\ %5C

^ %5E

~ %7E

[ %5B

] %5D

` %60

; %3B

/ %2F

? %3F

: %3A

@ %40

= %3D

& %26

$ %24

!                                     %21

如果切回内网仓库下载,需要取消代理:

git config --global --unset http.proxy

git config --global --unset https.proxy



报错如下:

$ git clone https://xxxx-ex.xxxx.com/xxxx_xxxx/xxxx_xxxx.git

Cloning into xxxx_xxxx...

fatal: unable to access 'https://xxxxx-xx.huawei.com/xxxx_xxxx/xxxx_xxxx.git/': SSL certificate problem: self signed certificate

解决方法如下:

$ git config --global http.sslVerify false




Python的镜像配置:

Windows下配置:

在C盘的 Users目录的自己的域账号目录下:

C:\Users\yxxxxx\pip\目录下,新建一个 pip.ini文件(如果已经存在则修改内容),写入下面的内容:(yxxxxx是我的账号目录,你自己的机器要用你的)

最终文件路径地址为:C:\Users\yxxxx\pip\pip.ini

文件内容如下:

[global]

index-url = http://mirrors.tools.huawei.com/pypi/simple

trusted-host = mirrors.tools.huawei.com

timeout = 120

临时方案:自己去网站下载离线安装包,然后本地安装:https://pypi.org/

Linux下配置:

Pip的配置文件为用户根目录下的:~/.pip/pip.conf,如果文件不存在,则新创建即可。

文件内容:

[global]

index-url = http://mirrors.tools.huawei.com/pypi/simple

trusted-host = mirrors.tools.huawei.com

timeout = 120

操作步骤参考:

[root@kwephicprd55238 ~]# ls

anaconda-ks.cfg selfstart

[root@kwephicprd55238 ~]# mkdir .pip

[root@kwephicprd55238 ~]# ls

anaconda-ks.cfg selfstart

[root@kwephicprd55238 ~]# ls

anaconda-ks.cfg selfstart

[root@kwephicprd55238 ~]# cd .pip

[root@kwephicprd55238 .pip]# ls

[root@kwephicprd55238 .pip]# ls

[root@kwephicprd55238 .pip]# vi pip.conf

[root@kwephicprd55238 .pip]# ls

pip.conf

[root@kwephicprd55238 .pip]# cat pip.conf

[global]

index-url = http://mirrors.tools.huawei.com/pypi/simple

trusted-host = mirrors.tools.huawei.com

timeout = 120

[root@kwephicprd55238 .pip]#

你可能感兴趣的:(GIT 笔记)