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