Git命令窗口10变慢

时间:2018-08-27 07:25:05

标签: windows git performance

我使用

  • windows 10
  • git 2.18.0
  • 通过密码使用专用密钥文件通过
  • ssh

所有git命令都很慢。我通过使用设置GIT跟踪获得测试命令,

git trace command

我已经卸载并安装git

我已卸载intellij,然后将其重新安装干净

我已经测试了一些配置,但是没有帮助。

https://github.com/msysgit/msysgit/wiki/Diagnosing-why-Git-is-so-slow

但没有帮助。

我的配置

git config --list
core.symlinks=false
core.autocrlf=true
core.fscache=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
help.format=html
http.sslcainfo=/bin/curl-ca-bundle.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
http.sslbackend=openssl
diff.astextplain.textconv=astextplain
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
credential.helper=manager
core.editor='C:\Program Files (x86)\Notepad++\notepad++.exe' -multiInst -notabbar -nosession -noPlugin
winupdater.recentlyseenversion=2.18.0.windows.1
user.name=Firstname Surname
user.email=firstname.surname@domain.de
credential.helper=manager
core.preloadindex=true
core.fscache=true
gc.auto=256

C:\Users\Besitzer>git config --list --global
winupdater.recentlyseenversion=2.18.0.windows.1
user.name=Firstname Surname
user.email=firstname.surname@domain.de
credential.helper=manager
core.preloadindex=true
core.fscache=true
gc.auto=256

C:\Users\Besitzer>git config --list --show-origin
file:"C:\\ProgramData/Git/config"       core.symlinks=false
file:"C:\\ProgramData/Git/config"       core.autocrlf=true
file:"C:\\ProgramData/Git/config"       core.fscache=true
file:"C:\\ProgramData/Git/config"       color.diff=auto
file:"C:\\ProgramData/Git/config"       color.status=auto
file:"C:\\ProgramData/Git/config"       color.branch=auto
file:"C:\\ProgramData/Git/config"       color.interactive=true
file:"C:\\ProgramData/Git/config"       help.format=html
file:"C:\\ProgramData/Git/config"       http.sslcainfo=/bin/curl-ca-bundle.crt
file:"C:\\ProgramData/Git/config"       sendemail.smtpserver=/bin/msmtp.exe
file:"C:\\ProgramData/Git/config"       diff.astextplain.textconv=astextplain
file:"C:\\ProgramData/Git/config"       rebase.autosquash=true
file:C:/Program Files/Git/mingw64/etc/gitconfig http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
file:C:/Program Files/Git/mingw64/etc/gitconfig http.sslbackend=openssl
file:C:/Program Files/Git/mingw64/etc/gitconfig diff.astextplain.textconv=astextplain
file:C:/Program Files/Git/mingw64/etc/gitconfig filter.lfs.clean=git-lfs clean -- %f
file:C:/Program Files/Git/mingw64/etc/gitconfig filter.lfs.smudge=git-lfs smudge -- %f
file:C:/Program Files/Git/mingw64/etc/gitconfig filter.lfs.process=git-lfs filter-process
file:C:/Program Files/Git/mingw64/etc/gitconfig filter.lfs.required=true
file:C:/Program Files/Git/mingw64/etc/gitconfig credential.helper=manager
file:C:/Program Files/Git/mingw64/etc/gitconfig core.editor='C:\Program Files (x86)\Notepad++\notepad++.exe' -multiInst -notabbar -nosession -noPlugin
file:C:/Users/Besitzer/.gitconfig       winupdater.recentlyseenversion=2.18.0.windows.1
file:C:/Users/Besitzer/.gitconfig       user.name=Firstname Surname
file:C:/Users/Besitzer/.gitconfig       user.email=firstname.surname@domain.de
file:C:/Users/Besitzer/.gitconfig       credential.helper=manager
file:C:/Users/Besitzer/.gitconfig       core.preloadindex=true
file:C:/Users/Besitzer/.gitconfig       core.fscache=true
file:C:/Users/Besitzer/.gitconfig       gc.auto=256

还有其他想法吗?

$ GIT_TRACE_PERFORMANCE=1 git pull
07:23:44.194619 read-cache.c:1914       performance: 0.001251600 s: read cache .git/index
07:23:46.784485 trace.c:420             performance: 0.019059100 s: git command: git rev-list --objects --stdin --not --all --quiet
07:23:47.493496 read-cache.c:1914       performance: 0.001326900 s: read cache .git/index
07:23:47.968475 trace.c:420             performance: 0.006132500 s: git command: git gc --auto
07:23:48.305488 trace.c:420             performance: 3.635291700 s: git command: git fetch --update-head-ok
07:23:49.127034 read-cache.c:1914       performance: 0.001244100 s: read cache .git/index
07:23:49.130536 trace.c:420             performance: 0.015394700 s: git command: git merge FETCH_HEAD
Already up to date.
07:23:49.473534 trace.c:420             performance: 5.283561100 s: git command: 'C:\Program Files\Git\mingw64\bin\git.exe' pull

0 个答案:

没有答案
相关问题