Convert GitHub pull requests into a single Markdown file you can review locally. Useful for offline or local AI review workflows with tools like opencode, GitHub Copilot CLI, and your own scripts.
- 🔐 Zero-config auth: uses your existing GitHub credentials
- 🧾 Clean output: PR details, threads, and summaries in readable Markdown
- 🧰 Practical controls: filter by status, write to file or stdout, debug when needed
- 🏢 GitHub Enterprise support, plus safe local credential storage (XDG-style, tight perms)
gem install git-markdowngit-markdown setupFrom inside a git repository:
git-markdown pr 123Or specify the repo:
git-markdown pr owner/repo#123It saves PR-{number}-{title}.md in the current directory by default.
# Export PR from current repository
git-markdown pr 123
# Export PR from a specific repository
git-markdown pr owner/repo#123
# Output to stdout (useful for piping)
git-markdown pr 123 --stdout | pbcopy # macOS; on Linux use `xclip`/`wl-copy` or redirect to a file
# Save to a directory
git-markdown pr 123 --output ./reviews/
# Filter comment threads (default: unresolved)
git-markdown pr 123 --status=unresolved
git-markdown pr 123 --status=resolved
git-markdown pr 123 --status=all
# Debug output
git-markdown pr 123 --debug
# Show version
git-markdown versiongit-markdown looks for a GitHub token in this order:
GITHUB_TOKENorGH_TOKENenvironment variables- Git credential store (
git credential fill) - GitHub CLI (
gh auth token) - Token saved by
git-markdown setup
If you see a prompt for a GitHub username or an askpass error, set GITHUB_TOKEN or GH_TOKEN in your environment to skip git credential prompts.
Set your API URL:
export GITHUB_API_URL=https://github.yourcompany.com/api/v3
git-markdown pr owner/repo#123The generated Markdown includes:
- PR metadata (title, author, status, created date)
- PR description (full body)
- Review comments grouped by file with line numbers
- General discussion comments
- Review summaries (approvals, change requests)
Threads marked with [resolved] or [done] are filtered out by default. Use --status=all to include them.
Config is stored under ~/.config/git-markdown/:
config.ymlfor settings (provider, API URL, defaults)credentialsfor the token (permissions: 0600)
- Ruby 3.0+
- Git (for remote detection)
- GitHub Personal Access Token with
reposcope
git clone https://github.com/ethos-link/git-markdown.git
cd git-markdown
bundle install
bundle exec rake test
bundle exec standardrb
bundle exec rakeNote: Gemfile.lock is intentionally not tracked to avoid conflicts across Ruby versions.
We use lefthook with the Ruby commitlint gem to enforce Conventional Commits on every commit. CI also validates commit messages on pull requests and pushes to main/master.
Run the hook installer once per clone:
bundle exec lefthook installrake installReleases are triggered by pushed tags and use CHANGELOG.md for GitHub release notes.
If you want changelog automation, install git-cliff (https://github.com/orhun/git-cliff) locally and use it to update CHANGELOG.md.
The release workflow expects a ## [X.Y.Z] entry in CHANGELOG.md that matches the tag. Note: release:prep enforces a clean working tree and must run on the main or master branch; it will skip if the changelog has no changes.
Before bumping, install dependencies:
bundle installThen run:
# 1) Bump the version (commit created)
bundle exec gem bump -v X.Y.Z
# 2) Prepare release (changelog + tag + push)
bundle exec rake release:prep- Fork it
- Create a branch (
git checkout -b feature/my-feature) - Commit your changes
- Push (
git push origin feature/my-feature) - Open a Pull Request
Please use Conventional Commits for commit messages.
- GitLab Merge Request support (
git-markdown mr) - GitLab and GitHub Issue support (
git-markdown issue) - Custom templates
- Optional diff in output
- GitHub REST API docs: docs.github.com/en/rest
- GitHub CLI auth token: cli.github.com/manual/gh_auth_token
- Git credential interface: git-scm.com/docs/git-credential
- XDG Base Directory spec: specifications.freedesktop.org/basedir-spec
- RubyGems: rubygems.org/gems/git-markdown
MIT License, see LICENSE.txt
Made by the team at Ethos Link — practical software for growing businesses. We build tools for hospitality and retail teams who don’t have time for complicated setups: plain-language insights, fast onboarding, and real human support so you can get clear insights, take action, and move on.
We also build Reviato, “More stars. Less hassle.”. Reviato helps restaurants, hotels, clinics, vets and other local businesses collect and analyse customer reviews, highlights recurring themes, and turns feedback into actionable next steps.