You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

federation.properties 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #
  2. # Git Repository Settings
  3. #
  4. # Base folder for repositories
  5. # Use forward slashes even on Windows!!
  6. # e.g. c:/gitrepos
  7. #
  8. # SINCE 0.5.0
  9. # RESTART REQUIRED
  10. git.repositoriesFolder = git
  11. # Search the repositories folder subfolders for other repositories.
  12. # Repositories MAY NOT be nested (i.e. one repository within another)
  13. # but they may be grouped together in subfolders.
  14. # e.g. c:/gitrepos/libraries/mylibrary.git
  15. # c:/gitrepos/libraries/myotherlibrary.git
  16. #
  17. # SINCE 0.5.0
  18. git.searchRepositoriesSubfolders = true
  19. # Your federation name is used for federation status acknowledgments. If it is
  20. # unset, and you elect to send a status acknowledgment, your Gitblit instance
  21. # will be identified by its hostname, if available, else your internal ip address.
  22. # The source Gitblit instance will also append your external IP address to your
  23. # identification to differentiate multiple pulling systems behind a single proxy.
  24. #
  25. # SINCE 0.6.0
  26. federation.name =
  27. # Federation pull registrations
  28. # Registrations are read once, at startup.
  29. #
  30. # RESTART REQUIRED
  31. #
  32. # frequency:
  33. # The shortest frequency allowed is every 5 minutes
  34. # Decimal frequency values are cast to integers
  35. # Frequency values may be specified in mins, hours, or days
  36. # Values that can not be parsed or are unspecified default to *federation.defaultFrequency*
  37. #
  38. # folder:
  39. # if unspecified, the folder is *git.repositoriesFolder*
  40. # if specified, the folder is relative to *git.repositoriesFolder*
  41. #
  42. # bare:
  43. # if true, each repository will be created as a *bare* repository and will not
  44. # have a working directory.
  45. #
  46. # if false, each repository will be created as a normal repository suitable
  47. # for local work.
  48. #
  49. # mirror:
  50. # if true, each repository HEAD is reset to *origin/master* after each pull.
  51. # The repository will be flagged *isFrozen* after the initial clone.
  52. #
  53. # if false, each repository HEAD will point to the FETCH_HEAD of the initial
  54. # clone from the origin until pushed to or otherwise manipulated.
  55. #
  56. # mergeAccounts:
  57. # if true, remote accounts and their permissions are merged into your
  58. # users.properties file
  59. #
  60. # notifyOnError:
  61. # if true and the mail configuration is properly set, administrators will be
  62. # notified by email of pull failures
  63. #
  64. # include and exclude:
  65. # Space-delimited list of repositories to include or exclude from pull
  66. # may be * wildcard to include or exclude all
  67. # may use fuzzy match (e.g. org.eclipse.*)
  68. #
  69. # (Nearly) Perfect Mirror example
  70. #
  71. #federation.example1.url = https://go.gitblit.com
  72. #federation.example1.token = 6f3b8a24bf970f17289b234284c94f43eb42f0e4
  73. #federation.example1.frequency = 120 mins
  74. #federation.example1.folder =
  75. #federation.example1.bare = true
  76. #federation.example1.mirror = true
  77. #federation.example1.mergeAccounts = true