Python 安装包镜像
https://registry.npmmirror.com/binary.html
python PYPI镜像
http://pypi.doubanio.com/simple/
git 常用命令
git clone XXX.git
下载 克隆 git仓库到本地目录
可选 -b 参数 选择不同的版本
git pull 与远程git仓库通信,获取最新的仓库文件
git status 查看本目录下的更新(修改)状态
git add --all 和 git add . 将自己的本地目录下的暂存 (提交的前一步操作)
git push 将自己的本地目录下的暂存提交至远程仓库,可以用git status 查看修改了哪些文件。