Here are a couple of options for doing everything locally to your network that don't take much administration.
Sharing a directory over SMB that contains a bare repository
How about getting your Windows-using colleague to share a directory over SMB, so you can mount it with Samba. Then either one of you could just create a bare repository in that directory with:
cd shared
mkdir project.git
git init --bare
... and both push to and pull from that.
Accessing a repository on your computer with SSH
If you're happy to give your collaborator an account on your computer, you can easily create a shared bare repository that he can access with SSH. If his user account is called bob, and you're jnns, that's just a matter of:
sudo groupadd gitusers
sudo adduser jnns gitusers
sudo adduser bob gitusers
sudo mkdir -p /srv/git/project.git
sudo chown jnns:gitusers /srv/git/project.git
cd /srv/git/project.git
git init --bare --group=shared
Then he can add a remote like this:
git remote add jnns-computer bob@whatever.local:/srv/git/project.git
... and you can just add the remote as:
git remote add local /srv/git/project.git
I don't think that counts as a lot of admin, but maybe opinions would vary on that :)
I feel I should also say that while you reject GitHub as not being an option because you'd have to pay for private repositories, you really don't have to pay very much - I think $7 a month is a great deal for having private repositories on such a smooth service.