aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/config
Commit message (Collapse)AuthorAgeFilesLines
* config: Add Repository Format ExtensionPaulo Gomes2023-03-081-0/+53
| | | | | | Relates to the SHA256 implementation, defined in #706. Signed-off-by: Paulo Gomes <pjbgf@linux.com>
* Merge pull request #354 from dowy/issue/#309-clone-branch-with-hash-in-nameMáximo Cuadros2022-11-172-6/+46
|\ | | | | plumbing: config, Branch name with hash can be cloned. Fixes #309
| * plumbing: config, fix broken unit testsAdrian Pronk2021-07-261-3/+13
| |
| * plumbing: config, support correct escaping as per git-config rulesAdrian Pronk2021-07-252-13/+25
| |
| * plumbing: config, remove duplicated character in setAdrian Pronk2021-07-241-1/+1
| |
| * plumbing: config, Branch name with hash can be cloned. Fixes #309Adrian Pronk2021-07-242-1/+19
| |
* | minor grammatical fixesJon Eskin2022-09-221-1/+1
|/
* Merge pull request #112 from MichaelMure/complete-configMáximo Cuadros2020-10-096-56/+369
|\ | | | | config: add missing functions for completeness
| * Add testsvince2020-08-273-9/+267
| |
| * config: add missing functions for completenessMichael Muré2020-06-243-47/+102
| |
* | Use EqualFold for comparisonOleg Kovalov2020-07-062-2/+2
|/
* Revert "Merge pull request #20 from quorumcontrol/feature/other-configs"Máximo Cuadros2020-05-241-261/+0
| | | | | This reverts commit 3127ad9a44a2ee935502816065dfe39f494f583d, reversing changes made to 73c52edaad2dae256be61bd1dbbab08e1092f58e.
* Document some things in format/config/merged.goWes Morgan2020-04-071-1/+39
|
* Add funcs to set global & local config in MergedWes Morgan2020-04-061-0/+8
|
* Add Merged configWes Morgan2020-04-061-0/+215
| | | | ...for reading and writing global (~/.git/config) and reading system (/etc/gitconfig) configs in addition to local repo config
* *: migration from go-git-fixtures/v4 and go-git/gcfgMáximo Cuadros2020-03-101-1/+1
|
* all: simplificationferhat elmas2017-11-291-6/+2
| | | | | | | | | | - no length for map initialization - don't check for boolean/error return - don't format string - use string method of bytes buffer instead of converting bytes to string - use `strings.Contains` instead of `strings.Index` - use `bytes.Equal` instead of `bytes.Compare`
* config: preserve option order on config marshallingSantiago M. Mola2017-08-015-12/+71
| | | | | Do not change order of options (e.g. in RemoteConfig) when serializing for any option whose value has not changed.
* format/config: add GoStringSantiago M. Mola2017-08-012-1/+32
| | | | This is more convenient for testing and debugging.
* plumbing: format config, escape back slashMáximo Cuadros2017-07-192-4/+2
|
* worktree: commit, use path package instead of filepathMáximo Cuadros2017-07-192-2/+10
|
* plumbing: improve documentation (Fix #242)Antonio Jesus Navarro Perez2017-02-231-0/+38
|
* package plumbing documentation improvements (#248)Máximo Cuadros2017-02-073-217/+143
|
* Fix some typos in plumbing docs (#244)Sergio Arbeo2017-01-302-3/+3
|
* new plumbing package (#118)Máximo Cuadros2016-11-0812-0/+969
* plumbing: now core was renamed to core, and formats and clients moved inside