git remote add discohead https://github.com/discohead/teletype
git pull discohead pattern-mode-key-bindings
If you want patch files git will do this too:
git format-patch origin/master..discohead/pattern-mode-key-bindings
will output one .patch file per commit, or
git format-patch origin/master..discohead/pattern-mode-key-bindings --stdout > onefile.patch
will produce a single .patch file with them concatenated together.