Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Git Clone Fails in Bolt.diy - Proxy error #1552

Closed
etsraphael opened this issue Mar 25, 2025 · 15 comments
Closed

Git Clone Fails in Bolt.diy - Proxy error #1552

etsraphael opened this issue Mar 25, 2025 · 15 comments
Assignees
Labels
bug Something isn't working

Comments

@etsraphael
Copy link

Describe the bug

I'm trying to clone a GitHub repo using bolt.diy, but I'm running into a proxy error. There's no visible option to connect my GitHub account, which makes me wonder if I’m missing a required authentication step. The error seems to be related to a failed fetch request via the CORS proxy.

Here's the error from the console:

Target URL: https://github.com/etsraphael/ChainBrary.git/info/refs?service=git-upload-pack
Request headers: {
  accept: '*/*',
  'accept-encoding': 'gzip, deflate, br, zstd',
  'accept-language': 'en-GB,en;q=0.8',
  connection: 'keep-alive',
  host: 'github.com',
  referer: 'http://localhost:5173/',
  'user-agent': 'git/@isomorphic-git/cors-proxy'
}
Proxy error: TypeError: fetch failed
    at Object.fetch (node:internal/deps/undici/undici:14152:11)
    at processTicksAndRejections (node:internal/process/task_queues:95:5)
    at handleProxyRequest (/Users/raphaeletang-sale/Projects/bolt.diy/app/routes/api.git-proxy.$.ts:105:22)

Link to the Bolt URL that caused the error

none

Steps to reproduce

  1. Run the bolt.diy project locally.
  2. Attempt to clone a repo via the interface using the Git URL: https://github.com/etsraphael/ChainBrary.git
  3. Observe the error and absence of a GitHub login prompt or connect button.

Expected behavior

I expected to either be prompted to authenticate with GitHub or for the clone operation to work directly (if anonymous access was supported).

Screen Recording / Screenshot

Image

Platform

  • OS: macOS
  • Node.js: v18+
  • Bolt.diy version: latest
  • Browser: Chrome (latest)

Provider Used

No response

Model Used

Deepseek

Additional context

Not sure if authentication needs to be set up manually elsewhere or if this is a bug in the proxy/auth flow. Happy to test any fixes or provide more details.

@etsraphael
Copy link
Author

UPDATE: I foud out a way to connect from the "Connection" view in the settings. But I still have this issue when I'm trying to clone any project:

Image

The response in detail is here:

{
    "error": "Proxy error",
    "message": "fetch failed",
    "url": "https://github.com/etsraphael/MyPortfolio.git/info/refs"
}

And this is the error logged:

Target URL: https://github.com/etsraphael/MyPortfolio.git/info/refs?service=git-upload-pack
Request headers: {
  accept: '*/*',
  'accept-encoding': 'gzip, deflate, br, zstd',
  'accept-language': 'en-GB,en;q=0.8',
  authorization: 'Basic ****',
  connection: 'keep-alive',
  host: 'github.com',
  referer: 'http://localhost:5173/',
  'user-agent': 'git/@isomorphic-git/cors-proxy'
}
Proxy error: TypeError: fetch failed
    at Object.fetch (node:internal/deps/undici/undici:14152:11)
    at processTicksAndRejections (node:internal/process/task_queues:95:5)
    at handleProxyRequest (/Users/raphaeletang-sale/Projects/bolt.diy/app/routes/api.git-proxy.$.ts:105:22)
    at Object.callRouteLoader (/Users/raphaeletang-sale/Projects/bolt.diy/node_modules/.pnpm/@[email protected][email protected]/node_modules/@remix-run/server-runtime/dist/data.js:59:16)

@etsraphael etsraphael changed the title Git Clone Fails in Bolt.diy - Missing GitHub Auth & CORS Proxy Error Git Clone Fails in Bolt.diy - Proxy error Mar 25, 2025
@treicadani
Copy link

treicadani commented Mar 25, 2025

Issue happens because the duplex option was removed and nodejs requires duplex 'half' value for standard HTTP requests.

Add in api.git-proxy.$.ts inside the if statement at line 118
fetchOptions.duplex = 'half';

Should fix the issue.

@leex279
Copy link
Collaborator

leex279 commented Mar 25, 2025

Looks like a bug then.

@Stijnus can you take a look?

@leex279 leex279 added the bug Something isn't working label Mar 25, 2025
@Stijnus
Copy link
Collaborator

Stijnus commented Mar 25, 2025

Hi @etsraphael , @treicadani can you test the PR : #1537

To see if this resolves your issue...

Thx,

Br,

Stijnus

@etsraphael
Copy link
Author

etsraphael commented Mar 26, 2025

I pulled it, and now this is the new issue:

Target URL: https://github.com/etsraphael/MyPortfolio.git/info/refs?service=git-upload-pack
Request headers: {
  accept: '*/*',
  'accept-encoding': 'gzip, deflate, br, zstd',
  'accept-language': 'en-GB,en;q=0.7',
  authorization: 'Basic ***',
  connection: 'keep-alive',
  host: 'github.com',
  referer: 'http://localhost:5173/',
  'user-agent': 'git/@isomorphic-git/cors-proxy'
}
Proxy error: TypeError: fetch failed
    at Object.fetch (node:internal/deps/undici/undici:14152:11)
    at processTicksAndRejections (node:internal/process/task_queues:95:5)
    at handleProxyRequest (/Users/raphaeletang-sale/Projects/bolt.diy/app/routes/api.git-proxy.$.ts:106:22)
    at Object.callRouteLoader (/Users/raphaeletang-sale/Projects/bolt.diy/node_modules/.pnpm/@[email protected][email protected]/node_modules/@remix-run/server-runtime/dist/data.js:59:16)
    at /Users/raphaeletang-sale/Projects/bolt.diy/node_modules/.pnpm/@[email protected]/node_modules/@remix-run/router/router.ts:4934:19
    at callLoaderOrAction (/Users/raphaeletang-sale/Projects/bolt.diy/node_modules/.pnpm/@[email protected]/node_modules/@remix-run/router/router.ts:4998:16)

The response from the API is different:

{
    "error": "Proxy error",
    "message": "fetch failed",
    "type": "TypeError",
    "url": "https://github.com/etsraphael/MyPortfolio.git/info/refs"
}

@Stijnus
Copy link
Collaborator

Stijnus commented Mar 26, 2025

ok, thank you for your feedback i will look into it what repo you want to clone?

@Stijnus
Copy link
Collaborator

Stijnus commented Mar 26, 2025

I have made some changes could you test once more please?

@etsraphael
Copy link
Author

I still have the same issue even after getting your two commits. Is it working on your side?

Target URL: https://github.com/etsraphael/MyPortfolio.git/info/refs?service=git-upload-pack
Request headers: {
  accept: '*/*',
  'accept-encoding': 'gzip, deflate, br, zstd',
  'accept-language': 'en-GB,en;q=0.7',
  authorization: 'Basic ***,
  connection: 'keep-alive',
  host: 'github.com',
  referer: 'http://localhost:5173/',
  'user-agent': 'git/@isomorphic-git/cors-proxy'
}
Proxy error: TypeError: fetch failed
    at Object.fetch (node:internal/deps/undici/undici:14152:11)
    at processTicksAndRejections (node:internal/process/task_queues:95:5)
    at handleProxyRequest (/Users/raphaeletang-sale/Projects/bolt.diy/app/routes/api.git-proxy.$.ts:106:22)
    at Object.callRouteLoader (/Users/raphaeletang-sale/Projects/bolt.diy/node_modules/.pnpm/@[email protected][email protected]/node_modules/@remix-run/server-runtime/dist/data.js:59:16)

@Stijnus
Copy link
Collaborator

Stijnus commented Mar 26, 2025

i have tested again and its working on my side...

@etsraphael
Copy link
Author

What's your OS and browser?

@Stijnus
Copy link
Collaborator

Stijnus commented Mar 26, 2025

im using chrome and Macos

Chrome is up to date
Version 134.0.6998.166 (Official Build) (arm64)

System Version: macOS 15.4 (24E246)

@treicadani
Copy link

I pulled the latest code from main branch to test and tried to pull a private git repo you get this error

Proxy error: TypeError: RequestInit: duplex option is required when sending a body. at node:internal/deps/undici/undici:13392:13 at handleProxyRequest (/home/ubuntu/bolt.diy/app/routes/api.git-proxy.$.ts:105:22)

adding the half duplex to the git proxy allows it to pull the code.

@Stijnus
Copy link
Collaborator

Stijnus commented Mar 26, 2025

I have updated my PR and added the changes to the api.git.proxy

#1537

Can you test one more time, please?

Thx,

Br,

Stijnus

@treicadani
Copy link

i confirm checking out pr 1537 i can clone successfully a repository within bolt.diy without adding anything extra.

Image

@Stijnus
Copy link
Collaborator

Stijnus commented Mar 27, 2025

ok, i think we are ready to merge this PR asap.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants