Add exclusion list
The variable `config-exclusion-list' can be used to specify project names that should not have their configuration overwritten by `gitto --update-config'. It is a normal list of strings which name the repositories that should be left alone, like so: (set! config-exclusion-list '("repo1" "repo2" "repo3"))
This commit is contained in:
parent
d2db2dfb53
commit
e2c303c420
1 changed files with 9 additions and 5 deletions
|
@ -28,6 +28,9 @@
|
|||
#:use-module (srfi srfi-1)
|
||||
#:export (main))
|
||||
|
||||
(define config-exclusion-list '()
|
||||
"A list of strings naming the repositories to be left alone.")
|
||||
|
||||
(define (storage-dir xdg-env fallback)
|
||||
(let ((xdg (getenv xdg-env)))
|
||||
(string-append
|
||||
|
@ -149,11 +152,12 @@ gitto [options]
|
|||
|
||||
(define (update-config)
|
||||
(for-each (lambda (repo)
|
||||
(write-config
|
||||
(merge-config (repo-name repo)
|
||||
(read-config (repo-location repo))
|
||||
global-config)
|
||||
(string-append (repo-location repo) "/.git/config")))
|
||||
(unless (member (repo-name repo) config-exclusion-list)
|
||||
(write-config
|
||||
(merge-config (repo-name repo)
|
||||
(read-config (repo-location repo))
|
||||
global-config)
|
||||
(string-append (repo-location repo) "/.git/config"))))
|
||||
repositories))
|
||||
|
||||
(define option-spec
|
||||
|
|
Loading…
Reference in a new issue