We have a website, which is being developed for a customer, using git.
The files are uploaded to the web server.
The customer can then make changes to the site using ftp, changing the HTML files.
What’s the best way to sync these changes to our git server?
Why not just
rsync(or copy) them into a repo clone, and run something likegit commit -am"auto sync from customer ftp"?