aboutsummaryrefslogtreecommitdiffstats
path: root/repository/config_git.go
Commit message (Collapse)AuthorAgeFilesLines
* Supports git config includesSimon Walker2020-04-111-2/+2
| | | | | | | | | | | | | | I like to have "private" settings in a git include file, and store the main .gitconfig under version control. I do not want any authentication keys or tokens (even if encrypted) in version control, so I have by main .gitconfig include another file which is local and not tracked. The current implementation calls `git config --global --get-regexp <keyPrefix>` and for some reason, this command does not follow git include files. The changes suggested in this PR add the `--includes` flag to the command, which then reads any included files.
* * Fix git config reader can't read values with spacesJosh Bialkowski2020-01-041-5/+1
| | | | | | | * Add NewImportWarning for things that aren't exactly errors. Use this for unhandled changelog events. * Add NewExportWarning for things that aren't exactly errors. Use this for un-exportable status changes.
* bridge: various improvement on the global token PRMichael Muré2019-11-101-1/+1
|
* bridge: improvement on the import resume featureMichael Muré2019-11-031-2/+2
|
* bridge: use new repository configuration interfaceamine2019-11-011-2/+2
| | | | commands/webui: use new repository configuration interface
* repository: improve documentation and fix typo mistakeamine2019-11-011-5/+5
|
* repository: use `repo.runGitCommand` and `flagLocality` instead of execFnamine2019-11-011-15/+12
|
* repository: add StoreTimestamp/StoreBool to the config interfaceamine2019-11-011-30/+56
| | | | repository: move the gitVersion logic to *gitConfig struct
* repository: add ReadTimestamp methods and improve namingamine2019-10-311-2/+19
|
* repository: config interface and implementation reworkamine2019-10-311-0/+185