From this SO answer:
$ git --git-dir=../<some_other_repo>/.git \
format-patch -k -1 --stdout <commit SHA> | \
git am -3 -k
Is it possible to do same across servers? in other words, if git-dir is in different physical server, is it possible to use something like: --git-dir=otherServerName:/path/to/repo/.git
?