1、配置代理
- 设置代理
git config --global http.proxy 代理地址
// eg
git config -golbal http.proxy http://<username>:<password>@proxy.cc.com:<port>
git config -golbal https.proxy https://<username>:<password>@proxy.cc.com:<port>
- 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
- 查看代理
git config
打开配置文件所在位置查看c:\users\用户\ 查看 .gitconfig 文件
2、添加文件
git add . // 添加所有文件
git add * // 添加除了.开头文件外所有文件
3、查看文件状态
git status
4、提交
git commit
git push -u origin master
5、创建分支并切换到对应分支
git checkout -b branch
6、配置name and email
git config --global user.name "Your Name"
git config --globbal user.email "you@example.com"
git commit --amend --reset-author
网友评论