diff options
| -rw-r--r-- | .gitignore | 8 | ||||
| -rw-r--r-- | gitsyncer.json | 16 |
2 files changed, 17 insertions, 7 deletions
@@ -2,12 +2,6 @@ /gitsyncer gitsyncer-* -# Configuration files (except examples) -gitsyncer.json -.gitsyncer.json -*.json -!*.example.json - # IDE and editor files .vscode/ .idea/ @@ -42,4 +36,4 @@ Thumbs.db test/work/ test/work-*/ test/repos/ -.gitsyncer-work/
\ No newline at end of file +.gitsyncer-work/ diff --git a/gitsyncer.json b/gitsyncer.json new file mode 100644 index 0000000..7103d92 --- /dev/null +++ b/gitsyncer.json @@ -0,0 +1,16 @@ +{ + "organizations": [ + { + "host": "git@codeberg.org", + "name": "snonux" + }, + { + "host": "git@github.com", + "name": "snonux" + } + ], + "repositories": [], + "exclude_branches": [ + "^codex/" + ] +}
\ No newline at end of file |
