Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | read name from both global and local config | Karl Semich | 2020-10-30 | 1 | -12/+2 |
| | |||||
* | repository: fix edge case in git config read, affecting bridges | Michael Muré | 2020-10-25 | 1 | -0/+1 |
| | |||||
* | repository: workaround a go-git bug and ensure sorted tree object | Michael Muré | 2020-10-25 | 1 | -1/+17 |
| | |||||
* | repository: fix incorrect git dir on the git CLI implementation | Michael Muré | 2020-10-24 | 1 | -1/+1 |
| | |||||
* | repo: minor cleanup | Michael Muré | 2020-10-04 | 1 | -6/+6 |
| | |||||
* | repo: fix missing keyring on the go-git repo | Michael Muré | 2020-10-04 | 1 | -6/+18 |
| | |||||
* | repo: use go-git in more places, fix push | Michael Muré | 2020-10-04 | 2 | -3/+9 |
| | |||||
* | repo: fallback editor list by looking if the binary exist | Michael Muré | 2020-09-29 | 1 | -1/+17 |
| | |||||
* | repo: fix wrong ordering in gogit's ListCommit | Michael Muré | 2020-09-29 | 2 | -9/+7 |
| | |||||
* | repo: implement GetCoreEditor for go-git | Michael Muré | 2020-09-29 | 1 | -1/+23 |
| | |||||
* | repo: more testing for an edge case | Michael Muré | 2020-09-29 | 1 | -0/+5 |
| | |||||
* | repo: ReadTree must accept either a commit or a tree hash | Michael Muré | 2020-09-29 | 2 | -3/+25 |
| | |||||
* | repo: more config related bug fixes | Michael Muré | 2020-09-29 | 3 | -47/+90 |
| | |||||
* | repo: fix manu bugs in go-git config | Michael Muré | 2020-09-29 | 2 | -54/+133 |
| | |||||
* | repo: implement local/global/any config everywhere | Michael Muré | 2020-09-29 | 9 | -216/+400 |
| | |||||
* | repo: only use the file backend for the keyring | Michael Muré | 2020-09-29 | 1 | -27/+4 |
| | |||||
* | repo: split mocks into smaller reusable components | Michael Muré | 2020-09-29 | 1 | -48/+104 |
| | |||||
* | repo: split Config into 2 smaller interfaces | Michael Muré | 2020-09-29 | 1 | -8/+15 |
| | |||||
* | repo: test both plain and bare, test clocks | Michael Muré | 2020-09-29 | 1 | -127/+157 |
| | |||||
* | repo: smaller interfaces | Michael Muré | 2020-09-29 | 1 | -4/+12 |
| | |||||
* | repo: fix gogit clock path | Michael Muré | 2020-09-29 | 1 | -2/+2 |
| | |||||
* | fix ListCommits implementation | vince | 2020-09-29 | 2 | -9/+27 |
| | |||||
* | repo: fix some go-git implementation | Michael Muré | 2020-09-29 | 4 | -10/+24 |
| | |||||
* | Add more function implementations | vince | 2020-09-29 | 1 | -11/+111 |
| | |||||
* | repository: more go-git implementation | Michael Muré | 2020-09-29 | 1 | -2/+31 |
| | |||||
* | repository: fix a todo in the gogit repo | Michael Muré | 2020-09-29 | 1 | -20/+31 |
| | |||||
* | repository: some light shuffling of code | Michael Muré | 2020-09-29 | 2 | -39/+42 |
| | |||||
* | bridge: store credentials in the Keyring instead of the git config | Michael Muré | 2020-09-29 | 2 | -6/+17 |
| | |||||
* | repository: add access to the system keyring, with fallback on a file | Michael Muré | 2020-09-29 | 6 | -7/+126 |
| | |||||
* | repository: partial impl of a go-git backed Repo | Michael Muré | 2020-09-29 | 4 | -0/+679 |
| | |||||
* | Add functionality to remove bugs from a local repository. (#423) | Vincent Tiu | 2020-07-09 | 4 | -2/+20 |
| | | | | | Add functionality to remove bugs from a local repository. This adds a function to remove git references in the repo and another one to remove bugs. | ||||
* | repo: fix test chocking on randomized element in repo.ListRefs() | Michael Muré | 2020-07-03 | 1 | -1/+1 |
| | |||||
* | repository: merge git.Hash in for one less /util package | Michael Muré | 2020-07-01 | 7 | -69/+111 |
| | |||||
* | repo: more tests | Michael Muré | 2020-06-27 | 4 | -24/+176 |
| | |||||
* | repository: remove tie to Bug, improved and reusable testing | Michael Muré | 2020-06-26 | 12 | -292/+280 |
| | | | | | | | | | - 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 includes | Simon Walker | 2020-04-11 | 1 | -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. | ||||
* | git: fix GetRemote to not break when there is no remotes | Michael Muré | 2020-03-01 | 1 | -1/+4 |
| | |||||
* | * Fix git config reader can't read values with spaces | Josh Bialkowski | 2020-01-04 | 1 | -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: huge refactor to accept multiple kind of credentials | Michael Muré | 2019-12-08 | 3 | -29/+36 |
| | |||||
* | repo: esthetism rename | Michael Muré | 2019-11-19 | 3 | -10/+10 |
| | |||||
* | bridge: various improvement on the global token PR | Michael Muré | 2019-11-10 | 2 | -2/+2 |
| | |||||
* | commands: use token value as identifier | Amine | 2019-11-09 | 1 | -4/+8 |
| | |||||
* | bridge/core: comment token functionalities | Amine | 2019-11-09 | 1 | -2/+4 |
| | |||||
* | bridge: improvement on the import resume feature | Michael Muré | 2019-11-03 | 3 | -12/+11 |
| | |||||
* | repository: fix ineffectual assignment in git test | amine | 2019-11-01 | 1 | -0/+2 |
| | |||||
* | bridge: use new repository configuration interface | amine | 2019-11-01 | 4 | -70/+21 |
| | | | | commands/webui: use new repository configuration interface | ||||
* | repository: improve documentation and fix typo mistake | amine | 2019-11-01 | 2 | -7/+7 |
| | |||||
* | repository: use `repo.runGitCommand` and `flagLocality` instead of execFn | amine | 2019-11-01 | 1 | -15/+12 |
| | |||||
* | repository: add StoreTimestamp/StoreBool to the config interface | amine | 2019-11-01 | 6 | -78/+93 |
| | | | | repository: move the gitVersion logic to *gitConfig struct | ||||
* | repository: add ReadTimestamp methods and improve naming | amine | 2019-10-31 | 6 | -65/+104 |
| |