You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 2, 2020. It is now read-only.
# in pandoc repository, obtain all versions of pandoc
git tag | sort --version-sort | head -n -2 >~/Downloads/pandoc-version.txt
# in pandoc-portable repository, create all git tags
cat ~/Downloads/pandoc-version.txt | xargs -i -n1 -P1 bash -c 'git tag -a $0 -m "Travis auto mirror and repack from jgm/pandoc" && git push origin $0' {}