环境准备 git配置 git config --global user.name "Your Name" git config --global user.email "email@example.com" 验证安装 git --version 代码操作 初始化仓库 上传到github 代码推送 查看提交 git log 项目创建 远程添加 git代理 设置代理 //http || https git config --global http.proxy 127.0.0.1:7890 git config --gl…