summaryrefslogtreecommitdiffstatshomepage
path: root/repository/config_git.go
Commit message (Collapse)AuthorAge
* repository: remove tie to Bug, improved and reusable testingMichael Muré2020-06-26
| | | | | | | | | - allow the creation of arbitrary Lamport clocks, freeing the way to new entities and removing Bug specific (upper layer) code. - generalize the memory-only and persisted Lamport clocks behind a common interface - rework the tests to provide reusable testing code for a Repo, a Clock, a Config, opening a path to add a new Repo implementation more easily - test previously untested components with those new tests Note: one problem found during this endeavor is that `identity.Version` also need to store one time + Lamport time for each other Entity (Bug, config, PR ...). This could possibly done without breaking change but it would be much easier to wait for https://github.com/MichaelMure/git-bug-migration to happen.
* Supports git config includesSimon Walker2020-04-11
| | | | | | | | | | | | | | 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-04
| | | | | | | * 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-10
|
* bridge: improvement on the import resume featureMichael Muré2019-11-03
|
* bridge: use new repository configuration interfaceamine2019-11-01
| | | | commands/webui: use new repository configuration interface
* repository: improve documentation and fix typo mistakeamine2019-11-01
|
* repository: use `repo.runGitCommand` and `flagLocality` instead of execFnamine2019-11-01
|
* repository: add StoreTimestamp/StoreBool to the config interfaceamine2019-11-01
| | | | repository: move the gitVersion logic to *gitConfig struct
* repository: add ReadTimestamp methods and improve namingamine2019-10-31
|
* repository: config interface and implementation reworkamine2019-10-31