Newer
Older
Import / applications / MakePDF / 3rdParty / libharu-with-PRs / pr-patches / get-prs.sh
@John John on 29 Dec 2020 235 bytes bulk import from macbookpro checkouts
#!/bin/bash


git clone https://github.com/libharu/libharu.git

cd libharu

for i in {1..204}
do
  git fetch origin pull/${i}/head:pr_${i}
  git checkout pr_${i}
  git format-patch -1 HEAD
done

mv *.patch ../

cd ..

rm -rf libharu