10 lines
394 B
TOML
10 lines
394 B
TOML
[forge.default]
|
|
forge_type = "ForgeJo"
|
|
hostname = "git.example.net"
|
|
user = "git-next" # the user to perform actions as
|
|
token = "API-Token"
|
|
# path to private SSH key for user?
|
|
|
|
[forge.default.repos]
|
|
hello = { repo = "user/hello", branch = "main" } # maps to https://git.example.net/user/hello on the branch 'main'
|
|
world = { repo = "user/world", branch = "master" } # maps to the 'master' branch
|