7

我正在尝试将 Firefox 配置文件存储在 git 中。我已将其配置为使用代理,并且我希望能够在再次签出代码时恢复配置文件。

据我从文档中可以看出,有一个Cache文件夹和一个Offline Cache可能不应该包含的文件夹,因为它们只是缓存的文件夹,对于保留加载 Firefox 配置文件时要使用的代理设置没有任何意义。

配置文件文件夹中是否还有其他不值得包含在提交中的内容,因为它与以下内容无关:

  1. 防止加载配置文件。
  2. 防止在下次结帐时加载代理设置

我尝试添加以下内容:

# Ignore FF Cache
ProxyProfileFF/cache2/**
ProxyProfileFF/OfflineCache/**
ProxyProfileFF/jumpListCache/**
ProxyProfileFF/startupCache/**
ProxyProfileFF/saved-telemetry-pings/**

# Ignore vim temp files
*~
4

2 回答 2

3

这是我的.gitignore文件:

(存储在配置文件文件夹中)即

/Users/me/Library/Application Support/Firefox/Profiles/9j5n99pf.default

这里也是要点的链接

cookies.sqlite
cookies.sqlite-wal
favicons.sqlite-wal
logins.json
places.sqlite-wal
prefs.js
storage/
datareporting/
webappsstore.sqlite
webappsstore.sqlite-wal
weave/
addonStartup.json.lz4
favicons.sqlite
permissions.sqlite
places.sqlite
protections.sqlite
search.json.mozlz4
serviceworker.txt
sessionCheckpoints.json
SiteSecurityServiceState.txt
storage-sync.sqlite
storage.sqlite
bookmarkbackups
saved-telemetry-pings
sessionstore.jsonlz4
addons.json
AlternateServices.txt
content-prefs.sqlite
extensions.json
formhistory.sqlite
xulstore.json
于 2019-12-24T08:47:20.320 回答
0

我更喜欢“更好的安全然后抱歉的方法”。

那就是根据https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data排除所有内容,只添加真正需要的文件。此外,我不会添加我知道/认为它们存储登录凭据/密码(标有NEVER STORE THEM UNENCRYPTED)的文件。

这是我的相关部分.gitignore

# ## exclude everything and only allow specific files
*
!.gitignore

# ###################################
# ## FIREFOX
# ##  based on https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data
!profiles.ini
!installs.ini
#
# ## profiles
!Profiles/
!Profiles/*/
#
# ##  bookmarks, downloads & browsing history
!Profiles/*/places.sqlite
#!Profiles/*/favicons.sqlite
!Profiles/*/bookmarkbackups/
!Profiles/*/bookmarkbackups/*
#
# ##  site-specific preferences
!Profiles/*/permissions.sqlite
!Profiles/*/content-prefs.sqlite
#
# ##  search engins
#!Profiles/*/search.json.mozlz4
#
# ##  personal dictionary
!Profiles/*/persdict.dat
#
# ##  autocompelte history
#!Profiles/*/formhistory.sqlite
#
# ##  cookies & passwords
# ##   NEVER STORE THEM UNENCRYPTED
#!Profiles/*/key4.db
#!Profiles/*/logins.json
#!Profiles/*/cookies.sqlite
#
# ##  DOM storage
# ##   NEVER STORE THEM UNENCRYPTED?
#!Profiles/*/webappsstore.sqlite
#!Profiles/*/chromeappsstore.sqlite
#
# ##  Extensions
!Profiles/*/extension*
!Profiles/*/extensions/*
#
# ##  security certificate settings
#!Profiles/*/cert9.db
#
# ##  security device settings
#!Profiles/*/pkcs11.txt
#
# ##  download actions
#!Profiles/*/handlers.json
#
# ##  stored sessions
#!Profiles/*/sessionstore.jsonlz4
#
# ##  toolbar customization
#!Profiles/*/xulstore.json
#
# ##  user preferences
!Profiles/*/prefs.js
!Profiles/*/user.js
#
# ##  containers
!Profiles/*/containers.json
于 2022-02-15T11:01:35.907 回答