An implementation of git fast-export for Pijul

#7 This works really well with a bare git repo

Opened by ryanbooker on January 4, 2024
ryanbooker on January 4, 2024
git init --bare .git
touch .git/git-marks .git/pijul-marks
pijul-export --repo . --marks .git/pijul-marks | git fast-import --import-marks=.git/git-marks --export-marks=.git/git-marks

Then you can set up a remote and push as normal, but there is no local working copy. Thanks. :)