I'm trying to store a Firefox profile in git. I've configured it to use a proxy and I want to be able to pull the profile back up when I check the code out again.
As far as I can tell from the documentation there's a Cache
folder and an Offline Cache
folder that probably shouldn't be included because they are just cached folders, and not any thing of significance to retaining the proxy settings to be used when the Firefox profile is loaded.
Is there anything else in the profile folder that isn't worth including in the commit, because it has nothing to do with:
- Preventing the profile from being loaded.
- Preventing the proxy settings from being loaded on the next checkout
I've tried adding the following:
# Ignore FF Cache
ProxyProfileFF/cache2/**
ProxyProfileFF/OfflineCache/**
ProxyProfileFF/jumpListCache/**
ProxyProfileFF/startupCache/**
ProxyProfileFF/saved-telemetry-pings/**
# Ignore vim temp files
*~