You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/using-gitbase/getting-started.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,3 +116,20 @@ As of MySQL 8.0 [the default authentication method is `caching_sha2_password`](h
116
116
```
117
117
mysql -q -u root -h 127.0.0.1 --default-auth=mysql_native_password
118
118
```
119
+
120
+
## Library format specification
121
+
122
+
By default the directories added to github should contain normal git repositories. If the format of the repositories is different you have two ways to specify it.
123
+
124
+
If all the directories are in the same format you can set it globally with these parameters:
125
+
126
+
*`--format`: it can be either `git` for filesystem repositories or `siva` for siva archives
127
+
*`--bare`: specifies that git archives are bare, can only be used with `git` format
128
+
*`--bucket`: sets the number of characters to use for bucketing, used with `siva` libraries
129
+
*`--rooted`: enables or disables rooted reposotories management in `siva` libraries
130
+
131
+
If you are mixing formats you can specify each directory as a `file://` url with the same global parameters. For example:
0 commit comments