attractive colt

Joined

10 Experience
0 Lessons Completed
0 Questions Solved

Activity

The error likely stems from Bundler trying to access a Git repository for a gem you're pulling directly from GitHub. To test:

  1. Check your Gemfile for Git-based dependencies.
  2. Ensure the Git repository is cloned and accessible on the server.
  3. Clear Bundler cache: bundle clean --force && bundle install.
  4. Check Capistrano configuration to make sure the .git directory is not needed during deployment.
  5. Test in a staging environment by manually running the deploy tasks and checking if the error persists.