# git

  1. 保存/清除用户名和密码

    git config --global credential.helper store
    git config --system --unset credential.helper
    
  2. 设置和取消代理

    git config --global https.proxy http://127.0.0.1:41093
    git config --global https.proxy https://127.0.0.1:41093
    
    git config --global --unset http.proxy
    git config --global --unset https.proxy
    
    npm config delete proxy
    
  3. 版本回退(当前没有新的提交时有效)

    git reflog # 查看历史版本
    git reset --soft HEAD~1 # 回退到上一个版本
    git push --force # 提交回退