美文网首页
git常用命令

git常用命令

作者: YoungEvita | 来源:发表于2021-05-26 21:07 被阅读0次
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

相关文章

网友评论

      本文标题:git常用命令

      本文链接:https://www.haomeiwen.com/subject/ukdlsltx.html