Open bingooyong opened 1 year ago
使用oh-my-zsh进入一个大型git仓库的时候会非常的慢,并且执行命令也会非常的卡
是因为在进入目录的时候,oh-my-zsh会去获取git的更新信息,当仓库很大的时候就会非常慢了
设置 oh-my-zsh 不读取文件变化信息(在 git 项目目录执行下列命令)
$ git config --add oh-my-zsh.hide-dirty 1
如果你还觉得慢,可以再设置 oh-my-zsh 不读取任何 git 信息
$ git config --add oh-my-zsh.hide-status 1
如果想恢复显示,可以将1改为0,或者git config --remove-section oh-my-zsh
https://blog.csdn.net/a_ran/article/details/72847022?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param https://github.com/yangruihan/blog/issues/11
解决 oh-my-zsh git 进入目录卡顿问题
问题描述
使用oh-my-zsh进入一个大型git仓库的时候会非常的慢,并且执行命令也会非常的卡
问题原因
是因为在进入目录的时候,oh-my-zsh会去获取git的更新信息,当仓库很大的时候就会非常慢了
解决方案
设置 oh-my-zsh 不读取文件变化信息(在 git 项目目录执行下列命令)
如果你还觉得慢,可以再设置 oh-my-zsh 不读取任何 git 信息
如果想恢复显示,可以将1改为0,或者git config --remove-section oh-my-zsh
参考资料
https://blog.csdn.net/a_ran/article/details/72847022?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param https://github.com/yangruihan/blog/issues/11