gitea源码

NotesAndExtendedConfiguration 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Excludes Obsidian workspace cache and plugin code, but retains plugin
  2. # configuration. All notes and user-controlled configuration files are tracked
  3. # by Git.
  4. #
  5. # !!! WARNING !!!
  6. #
  7. # Community plugins may store sensitive secrets in their data.json files. By
  8. # including these files, those secrets may be tracked in your Git repository.
  9. #
  10. # To ignore configurations for specific plugins, add a line like this after the
  11. # contents of this file (order is important):
  12. # .obsidian/plugins/{{plugin_name}}/data.json
  13. #
  14. # Alternatively, ensure that you are treating your entire Git repository as
  15. # sensitive data, since it may contain secrets, or may have contained them in
  16. # past commits. Understand your threat profile, and make the decision
  17. # appropriate for yourself. If in doubt, err on the side of not including
  18. # plugin configuration. Use one of the alternative gitignore files instead:
  19. # * NotesOnly.gitignore
  20. # * NotesAndCoreConfiguration.gitignore
  21. # The current application UI state (DOM layout, recently-opened files, etc.) is
  22. # stored in these files (separate for desktop and mobile) so you can resume
  23. # your session seamlessly after a restart. If you want to track UI state, use
  24. # the Workspaces core plugin instead of relying on these files.
  25. .obsidian/workspace.json
  26. .obsidian/workspace-mobile.json
  27. # Obsidian plugins are stored under .obsidian/plugins/$plugin_name. They
  28. # contain metadata (manifest.json), application code (main.js), stylesheets
  29. # (styles.css), and user-configuration data (data.json).
  30. # We only want to track data.json, so we:
  31. # 1. exclude everything under the plugins directory recursively,
  32. # 2. unignore the plugin directories themselves, which then allows us to
  33. # 3. unignore the data.json files
  34. .obsidian/plugins/**/*
  35. !.obsidian/plugins/*/
  36. !.obsidian/plugins/*/data.json