https://github.com/grodowski/heroku-24-git
Try out getting rugged and git to work on heroku-24 stack
https://github.com/grodowski/heroku-24-git
Last synced: 4 months ago
JSON representation
Try out getting rugged and git to work on heroku-24 stack
- Host: GitHub
- URL: https://github.com/grodowski/heroku-24-git
- Owner: grodowski
- Created: 2024-08-07T08:57:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-07T08:58:08.000Z (over 1 year ago)
- Last Synced: 2025-08-29T07:03:47.922Z (4 months ago)
- Language: Ruby
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Try out getting `rugged` and `git` to work on `heroku-24` stack.
Steps
- set buildpack to apt
```
heroku buildpacks:add --index 1 heroku-community/apt
```
- workaround https://github.com/heroku/heroku-buildpack-apt/issues/137, so that all git commands are in `PATH`
```
heroku config:set GIT_EXEC_PATH=/app/.apt/usr/lib/git-core
```