TriRIKCan you make a tutorial on how to automatically pull changes from GitHub and update the config whenever you make changes (or schedule it daily)?
I tried using git's sparsecheckout feature but I think I had some access problems
A simple download can be accomplish like so, but you need svn instead of git
you can of course automate this with a batch script that simply has
cd <YOUR CUSTOM DIRECTORY PATH HERE>
svn export --force https://github.com/mastercoms/tf2cfg/trunk/mastercomfig
normally the github link is
https://github.com/mastercoms/tf2cfg/tree/master/mastercomfig
but svn needs "tree/master" to be replace with "trunk"
if you have your own autoexec you can also automate deleting the config's autoexec by adding
cd mastercomfig\cfg
rm autoexec.cfg
however any changes you'd like to make to the files is probably easiest/safest if you just open up the files and edit them