aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/index/decoder.go
Commit message (Collapse)AuthorAgeFilesLines
* Minor linter fixesOleg Kovalov2020-07-061-1/+1
|
* fix goreportcard warningsOleg Kovalov2020-07-011-1/+3
|
* *: migration from gopkg to go modulesMáximo Cuadros2020-03-101-2/+2
|
* plumbing: format/index perf, buffered reads, reflection removalArran Walker2019-04-211-18/+19
| | | | | | | | | | Large performance increase by buffering reads. There were a few instances where binary.Read() would end up using reflection on &plumbing.Hash, rather than treating it as a byte slice. This has now been resolved. Signed-off-by: Arran Walker <arran.walker@fiveturns.org>
* plumbing: format/index: support for EOIE extension, by default on git v2.2.0Máximo Cuadros2018-11-191-0/+25
| | | | Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
* all: remove extra 's' in "mismatch"Jongmin Kim2018-09-261-1/+1
| | | | Signed-off-by: Jongmin Kim <jmkim@pukyong.ac.kr>
* all: simplificationferhat elmas2017-11-291-7/+4
| | | | | | | | | | - 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`
* plumbing: index, Entries converted in a slice of pointersMáximo Cuadros2017-04-261-1/+1
|
* project: move imports from srcd.works to gopkg.inAntonio Jesus Navarro Perez2017-03-071-2/+2
| | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release.
* documentation changesMáximo Cuadros2017-01-311-2/+3
|
* new srcd.works/go-git.v4 pathMáximo Cuadros2017-01-301-2/+2
|
* Fix some typos in plumbing docs (#244)Sergio Arbeo2017-01-301-1/+1
|
* format/index: keep time.Time as zero, when decoded value is 0Máximo Cuadros2017-01-281-2/+9
|
* new plumbing package (#118)Máximo Cuadros2016-11-081-0/+446
* plumbing: now core was renamed to core, and formats and clients moved inside