git使用

设置代理

git config --global http.proxy http://127.0.0.1:808
git config --global https.proxy https://127.0.0.1:808

常用命令

  • 更新远程服务器代码
    git pull
  • 提交代码
  1. git add (提交所有文件: git add -A .)
    提交修改到暂存区
  2. git commit -m <注释内容>
    把修改提交到本地仓库
  3. git push
    把修改推送到远程服务器
  4. git checkout --
    撤销本地某个修改

你可能感兴趣的:(git使用)