logoalt Hacker News

oztenyesterday at 10:55 PM0 repliesview on HN

pijul clone https://nest.pijul.org/pijul/pijul

pijul log --hash-only > all_changes.txt

pijul unrecord --all

git init

``` for HASH in $(cat all_changes.txt); do pijul apply "$HASH" pijul reset # sync working copy to channel state git add -A git commit -m "pijul change: $HASH" done ```

git remote add origin [email protected]:you/pijul-mirror.git git push -u origin main