You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run dgit clone <path/to/some/local/repo> <path/to/new/repo and it will freeze without doing anything until you kill the process.
Underneath, the clone command is launching a git-upload-pack command (not provided by dgit, usually part of an existing git install) and using a pipe (I think) to fetch the packs from the other repo. Something is stalling in that communication and causing the entire process to freeze.
The text was updated successfully, but these errors were encountered:
It is a bit of a shame that there's a specialized tool "git-upload-pack" and IPC necessary to basically copy some files from one place to another. If dgit is eventually become a complete replacement for git it will need to be able to either have its own git-upload-pack implementation or come up with an acceptable short-cut.
Run
dgit clone <path/to/some/local/repo> <path/to/new/repo
and it will freeze without doing anything until you kill the process.Underneath, the clone command is launching a git-upload-pack command (not provided by dgit, usually part of an existing git install) and using a pipe (I think) to fetch the packs from the other repo. Something is stalling in that communication and causing the entire process to freeze.
The text was updated successfully, but these errors were encountered: