Hi all! I'm just starting up a grav blog and was wondering the best way to use git with grav. I've created the basics of a custom theme, added the admin plugin, added a user, etc locally. I'm going to create a git and use this to pull on my server the latest theme changes etc. This also will save all my blog posts etc. I want to only upload the user folder so I don't have to worry about my version being behind/ahead etc. I'm wondering if I can safely upload the user/accounts folder to a public repo (for future employers to view my work etc) or any other folders I should avoid.
My current gitignore is this:
# Grav Specific
.sass-cache
composer.lock
cache/*
assets/*
logs/*
images/*
user/data/*
# All but user folder
.htaccess
CHANGELOG.md
CONTRIBUTING.md
LICENSE.txt
README.md
backup/
bin/
composer.json
index.php
robots.txt
system/
tmp/
vendor/
webserver-configs/
but I haven't done any commits yet until I have you guys weigh in. Thanks!