These export and import, respectively, the generated man pages to/from the git branch called 'man'. You can use it to retrieve the .1 files if you don't have a working pandoc.
8 lines
156 B
Text
8 lines
156 B
Text
exec >&2
|
|
if git show-ref refs/heads/man >/dev/null; then
|
|
(cd .. && git archive man) | tar -xvf -
|
|
else
|
|
(cd .. && git archive origin/man) | tar -xvf -
|
|
fi
|
|
|
|
|