.gitignore: Does it take care of the .license file?

Hello,

I’m asking this in the forum because I’m not sure (and most likely I miss something): Does the .gitignore file which prevents upload of sensible files to a public git repository don’t care about the .license file, like it is missing/not matched by the other rules in the file? If I’m right, it should be added.

Best Regards,

# System files
# ------------

Icon
.DS_Store

# Temporary files
# ---------------

/media/*
!/media/index.html

# -------------SECURITY-------------
# NEVER publish these files via Git!
# -------------SECURITY-------------

# Cache Files
# ---------------

/site/cache/*
!/site/cache/index.html

# Accounts
# ---------------

/site/accounts/*
!/site/accounts/index.html

# Sessions
# ---------------

/site/sessions/*
!/site/sessions/index.html

# License
# ---------------
/site/config/.license

Ah, I found the problem: I was looking at the wrong .gitignore file; I checked the .gitignore of the subfolder of kirby. Not in the root. That’s why I found nothing in the repository search when I searched for your paste!

Thanks!

It’s the same in the Plainkit, just in case anyone wonders.