PUBLIC · READ ONLY

SOURCE & REPRODUCIBILITY

PawTwin's code, history included.

This is PawTwin's official public source mirror. It ships the complete Git object history as a portable text export, so judges and developers can reconstruct the repository without a GitHub account.

Allcommits
Completetracked tree
v2-futurerelease branch
FullGit history

PORTABLE REPOSITORY

Download every commit and tag

The Git fast-export is a self-contained, human-auditable text stream. Its compressed deployment chunks are verified and reconstructed by the download route before delivery. Import it to recover branches, commits, authors, timestamps, tags, and every tracked file.

Download Git exportView SHA-256 checksum

RELEASE CHECKPOINT

V2 hardened production tag

Tag
v2.0.2-production-hardened
Commit
Resolved by the annotated tag in this export
Branch
v2-future
License status
See repository files and attributions
Annotated release tag included in the export

REBUILD LOCALLY

Restore the repository in under a minute.

  1. 01
    Download and import

    Run these commands in a terminal with Git installed.

curl -fsSLO https://pawtwin-v2-future.vercel.app/source/pawtwin.git-export
curl -fsSLO https://pawtwin-v2-future.vercel.app/source/SHA256SUMS
mkdir pawtwin && cd pawtwin
git init -b main
git fast-import < ../pawtwin.git-export
git checkout v2-future
  1. 02
    Verify integrity and history

    Download SHA256SUMS beside the export, then inspect the reconstructed log.

cd ..
sha256sum -c SHA256SUMS
cd pawtwin
git log --oneline --decorate --all
git tag -n