git 拉动 rebase 冻结
git pull rebase freeze
我以前可以成功拉取,但是今天当我执行 git pull --rebase 时,它只显示此消息
"Updating b4b1294473..22ceb04d88"
它永远卡在那里。
设置 git 工作区需要很多时间,有解决方法吗?
我建议您检查 git 进程正在做什么,方法是使用以下命令跟踪它:
strace -e trace=%network,%file git {{command line parameters}}
您应该将输出重定向到一个文件以更好地检查问题:
strace -e trace=%network,%file git {{command line parameters}} 2>&1 | tee /tmp/git.log
我以前可以成功拉取,但是今天当我执行 git pull --rebase 时,它只显示此消息
"Updating b4b1294473..22ceb04d88"
它永远卡在那里。
设置 git 工作区需要很多时间,有解决方法吗?
我建议您检查 git 进程正在做什么,方法是使用以下命令跟踪它:
strace -e trace=%network,%file git {{command line parameters}}
您应该将输出重定向到一个文件以更好地检查问题:
strace -e trace=%network,%file git {{command line parameters}} 2>&1 | tee /tmp/git.log