user21
user21

Reputation: 1351

git pull rebase freeze

I am able to pull succesfully previosuly, but today when I do git pull --rebase, it just shows this message

"Updating b4b1294473..22ceb04d88"

and it get stuck there forever.

It takes a lot of time to setup the git workspace, is there a workaround?

Upvotes: 0

Views: 164

Answers (1)

Antonio Petricca
Antonio Petricca

Reputation: 11026

I suggest you to inspect what git process is doing by tracing it with the following command:

strace -e trace=%network,%file git {{command line parameters}}

You should redirect the output to a file to inspect better the issue:

strace -e trace=%network,%file git {{command line parameters}} 2>&1 | tee /tmp/git.log

Upvotes: 1

Related Questions