I tried using rsync --filter=':+ .gitignore' (-/exclude works but not include) to no avail.
Basically i just want to include the .ignore file in a script and upload everything in it with rsync to the remote.
If anyone would have the skills to sed or awk .gitignore into a file suitable for include with --filter='merge file' etc it would me much appreciated!
Or alternatively a way just to make rsync understand .gitignore for inclusion.
https://www.kernel.org/pub/software/scm/git/docs/gitignore.html 'PATTERN FORMAT'
http://linux.die.net/man/3/fnmatch
https://git.samba.org/?p=rsync.git;a=blob_plain;f=wildtest.txt;hb=HEAD
https://git.samba.org/?p=rsync.git;a=blob_plain;f=wildtest.c;hb=HEAD
Some Issues are in rsync bla/ means just that dir, bla/* means just the files in that dir, bla/** means just everything under that dir (including subdirs) and bla/*** finally means bla and all it's contents but all git might have is bla/
But exclude rules seem compatible.
git rsync-ignoredthat will understand every ignore list it comes across and uploads it to orign or someware I chose. I don't want to do it explicitly in the long run and I don't know sed or awk.