Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Eyevinn/python-runner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: Eyevinn/python-runner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: feat/commit-info
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 1, 2026

  1. feat: write .commit-info.json after git clone

    After cloning a repository, write commit metadata (sha, short sha,
    message, author, date, and last 5 commits) to /usercontent/.commit-info.json
    using pure bash without requiring jq.
    
    Closes #4
    
    Co-Authored-By: Claude <[email protected]>
    birme and claude committed Apr 1, 2026
    Configuration menu
    Copy the full SHA
    dc19265 View commit details
    Browse the repository at this point in the history
  2. fix: use separate git calls per field to avoid pipe-delimiter bug in …

    …write_commit_info
    
    The previous IFS='|' approach split on pipes in commit messages,
    corrupting the JSON for the sha/message/author/date fields. Replace
    with one git call per field and build the JSON with printf + sed
    escaping, which does not rely on a delimiter that can appear in commit
    message text.
    
    Co-Authored-By: Claude <[email protected]>
    birme and claude committed Apr 1, 2026
    Configuration menu
    Copy the full SHA
    b6f343b View commit details
    Browse the repository at this point in the history
Loading