git 命令

 

git init

git remote add origin https://***.git

 

git config --global http.proxy
 git config --global http.proxy http://127.0.0.1:8888

 git config http.proxy http://127.0.0.1:8888
 git config http.proxy

取消全局代理

git config --global --unset http.proxy
 git pull
 git config http.sslVerify false

取消本地账号信息

 git config --system --unset credential.helper

 

feat: 新功能(feature)
fix: 修补bug
docs: 文档(documentation)
style: 格式(不影响代码运行的变动)
refactor: 重构(即不是新增功能,也不是修改bug的代码变动)
chore: 构建过程或辅助工具的变动
revert: 撤销,版本回退
perf: 性能优化
test:测试
improvement: 改进
build: 打包
ci: 持续集成

posted @ 2021-04-02 19:08  已老  阅读(46)  评论(0编辑  收藏  举报