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