Skip to content
Discussion options

You must be logged in to vote

ZabbixCI relies on the pull/push and diff functions of git to determine changes. However it does not necessarily require a "remote" remote. As a remote can also be a local repository, the following config could be used.

config.yaml

remote: "/local/path/to/folder"

On this path, a bare repository needs to be created:

mkdir -p /local/path/to/folder
cd /local/path/to/folder
git init --bare

Do keep in mind that this bare local repository follows a different folder structure compared to normal repositories

~/remote# ls
HEAD        config      description hooks       info        objects     refs

To my understanding this should not interfere with ZabbixCI operations, but this use case is not cove…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by wouterdebruijn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #125 on April 08, 2025 04:26.