I am using git to deploy a website. The webserver contains a bare repository (the hub) and a cloned repo with a checked-out working tree (which is the actual live site). I am working locally and pushing to the hub, and a post-receive hook at the hub pulls the changes into the live repo.
The site contains a huge archive with tons of PDF files (several gigs). Currently these are not managed with git, but are instead synced using other tools which unfortunately do not work properly. I would like to manage everything with git, but due to space constraints I want the files to exist only in the working trees, and not in the git repository (which would double the required size locally and triple it at the webserver as objects in both the hub repo and the live site repo). In other words, I want to sync these files directly from my local computer to the live working tree. I do not need versioning of these files.
Is this possible? I have tried to look into git-fat, but when doing git fat push, it only pushes SHA-named objects into a single directory. I would like to sync the entire PDF archive folder structure, just without keeping the PDF files themselves in the actual git repo (.git/objects).
I am using Windows locally. My webserver is running Linux. I do not think I have permissions to install anything on the server.