deep-jade
deep-jade6d ago

I have some trouble with cloning the repo, it keeps throwing...

I have some trouble with cloning the repo, it keeps throwing $ git clone https://github.com/dbfreelance/refine.git Cloning into 'refine'... remote: Enumerating objects: 326761, done. remote: Counting objects: 100% (48/48), done. remote: Compressing objects: 100% (37/37), done. error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8) error: 4040 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output I switch to HTTP/1.1 and now throws $ git clone https://github.com/dbfreelance/refine.git Cloning into 'refine'... remote: Enumerating objects: 326761, done. remote: Counting objects: 100% (48/48), done. remote: Compressing objects: 100% (37/37), done. error: RPC failed; curl 18 transfer closed with outstanding read data remaining error: 348 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output
GitHub
GitHub - dbfreelance/refine: A React Framework for building intern...
A React Framework for building internal tools, admin panels, dashboards & B2B apps with unmatched flexibility. - dbfreelance/refine
3 Replies
kapa.ai
kapa.ai6d ago
Hi @DarielBatista99. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- I apologize for the issues you're experiencing while trying to clone the refine repository. The errors you're encountering are not specific to refine itself, but rather related to Git and network issues. However, I can provide some general suggestions that might help resolve the problem: 1. Try increasing the buffer size and timeout:
git config --global http.postBuffer 524288000
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999

git config --global http.postBuffer 524288000
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999

2. If you're behind a proxy, make sure your Git proxy settings are correct. 3. Try cloning with a depth of 1 to reduce the amount of data transferred:
git clone --depth 1 <https://github.com/dbfreelance/refine.git>

git clone --depth 1 <https://github.com/dbfreelance/refine.git>

4. Ensure you have a stable internet connection and try again later. 5. If the issue persists, you could try downloading the repository as a ZIP file from the GitHub website instead. If you continue to have problems, you might want to check your network settings or consult with your network administrator. For refine-specific setup instructions, once you successfully clone the repository, you can refer to the Contributing guide (https://refine.dev/docs/guides-concepts/contributing/#setting-up-your-environment-for-development) for information on setting up your development environment. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai6d ago
<@1306874273922809927> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
deep-jade
deep-jadeOP6d ago
This helped, thanks a lot!