Git 常用命令

git submodulegit submodule update --remote # 将子模块更新到最新的commit id
git 2023年07月08日 497次浏览

zsh git目录卡顿处理

zsh 安装了 oh-my-zsh 主题后,在 wsl 中使用进入 git 目录响应卡顿。解决办法如下git config --add oh-my-zsh.hide-dirty 1git config --add oh-my-zsh.hide-status 1
git wsl 2021年06月20日 1,111次浏览

Git commit 规范化

规范且有意义的提交记录,有助于追踪代码修改和查看历史记录现在支持以下九种类型(参考 Angular 规范的 commit message)feat: 新功能(feature)fix: 修补bugver: 版本号修改(version)docs: 文档(documentation)style: 格式(不
git 2020年02月25日 1,049次浏览