2023年03月01日 373 阅读 其他 Git 中停止跟踪文件 使用 git update-index 在 Git 中停止跟踪文件有时,我们可能希望在仓库中保留一个文件,但不再希望跟踪其更改。我们可以使用带有 --skip-worktree 选项的 git ...
2021年11月10日 708 阅读 其他 git 获取所有分支 git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin...
2021年11月10日 683 阅读 其他 git简易教程 简易的命令行入门教程:Git 全局设置:git config --global user.name "yingxiaozhu" git config --global use...