aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/protocol/packp/updreq_encode.go
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused variables/types/functionsAbhinav Gupta2021-11-271-4/+0
| | | | | | | | [staticcheck](https://staticcheck.io/) reported a number of unused fields, functions, types, and variables across the code. Where possible, use them (assert unchecked errors in tests, for example) and otherwise remove them.
* plumbing: packp, Add encoding for push-options. Fixes #268.Sören Bohn2021-10-261-0/+18
| | | | go-git: Add field `Options` to `PushOptions`, wire functionality.
* Use only one name for receiverOleg Kovalov2020-07-061-9/+9
|
* *: migration from gopkg to go modulesMáximo Cuadros2020-03-101-3/+3
|
* project: move imports from srcd.works to gopkg.inAntonio Jesus Navarro Perez2017-03-071-3/+3
| | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release.
* new srcd.works/go-git.v4 pathMáximo Cuadros2017-01-301-3/+3
|
* transport: add git-send-pack support to local/ssh. (#163)Santiago M. Mola2016-12-091-0/+8
| | | | | | | | | * protocol/packp: add Packfile field to ReferenceUpdateRequest. * protocol/packp: add NewReferenceUpdateRequestFromCapabilities. * NewReferenceUpdateRequestFromCapabilities can be used to create a ReferenceUpdateRequest with initial capabilities compatible with the server. * protocol/packp: fix new line handling on report status. * transport/file: test error on unexisting command.
* protocol/packp: add reference update request encoder. (#147)Santiago M. Mola2016-12-051-0/+67
* add ReferenceUpdateRequest struct. * add ReferenceUpdateRequest decoder. * add ReferenceUpdateRequest encoder.