You've got files in a git repo and you want them on a static server. Here's how it's done using a Mac Mini:
-
Set up your local repo
$ mkdir marketing && cd marketing $ git init $ echo 'Hello, world!' > index.html $ git add . $ git commit -am "init"