技术分享

🗒️conda与pip的proxy设置

CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/main/win-64/current_repodata.json> Elapsed: - An HTTP error occurred when trying to retrieve this URL. HTTP errors are often intermittent, and a simple retry will get you on your way. If your current network has https://www.anaconda.com blocked, please file a support request with your network engineering team. 'https://repo.anaconda.com/pkgs/main/win-64

🗒️docker命令

# 列出所有容器ID docker ps -aq # 查看所有运行或者不运行容器 docker ps -a # 停止所有的container(容器),这样才能够删除其中的images docker stop $(docker ps -aq)

🗒️Git速成手册

Git为免费、开源、分布式、版本控制工具,由Linus大神开发。(因此Git中通用许多Linux命令) 底层貌似使用指针来实现比对,进行各历史版本的保存,对本地文件不会产生影响。