Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | git: Add support for deepening shallow clones (#311) | Marcus Watkins | 2021-05-12 | 1 | -0/+26 |
| | |||||
* | *: use go-billy instead of os calls | Máximo Cuadros | 2021-05-02 | 1 | -30/+58 |
| | |||||
* | Remote: new ListContext function (#278) | Xiang Xiujuan | 2021-04-21 | 1 | -0/+11 |
| | |||||
* | plumbing: wire up contexts for Transport.AdvertisedReferences (#246) | Andrew Suffield | 2021-03-26 | 1 | -2/+47 |
| | | | | | * plumbing: wire up contexts for Transport.AdvertisedReferences * add more tests for context wiring | ||||
* | add RequireRemoteRefs to PushOptions (#258) | Andrew Suffield | 2021-03-25 | 1 | -0/+53 |
| | | | | | | | | | | | | | | | | | | The git protocol itself uses a compare-and-swap mechanism, where changes send the old and new values and the change is only applied if the old value matches. This is used to implement the --force-with-lease feature in git push. go-git populates the `old` field with the current value of the ref that is read from the remote. We can implement a convenient (albeit more limited) form of the --force-with-lease feature just by allowing the caller to specify particular values for this ref. Callers can then implement complex multi-step atomic operations by reading the ref themselves at the start of the process, and passing to in RequireRemoteRefs at the end. This is also a suitable building block for implementing --force-with-lease (#101), which is mostly an exercise in computing the correct hash to require. Hence, this appears to be the most reasonable API to expose. | ||||
* | Fetch should return a unique error type when ref not found | andrew2nelson | 2020-09-02 | 1 | -0/+2 |
| | | | | | | | | | It can be useful for callers to distinguish between an error of "couldn't find remote ref" and some other error like "network error". Creating an explicit error type for this allows consumers to determine the kind of error using the errors.Is and errors.As interface added in go1.13 | ||||
* | git: remote, Fix deleting references when force pushing. | Chris Gavin | 2020-08-28 | 1 | -0/+25 |
| | |||||
* | Remote.Push: support force option | kappyhappy | 2020-05-21 | 1 | -0/+28 |
| | |||||
* | Remote.Fetch: support exact SHA1 refspecs | Máximo Cuadros | 2020-05-11 | 1 | -1/+30 |
| | |||||
* | *: migration from go-git-fixtures/v4 and go-git/gcfg | Máximo Cuadros | 2020-03-10 | 1 | -1/+1 |
| | |||||
* | *: migration from gopkg to go modules | Máximo Cuadros | 2020-03-10 | 1 | -11/+11 |
| | |||||
* | Merge pull request #1165 from seletskiy/push-prune | Máximo Cuadros | 2019-07-26 | 1 | -1/+58 |
|\ | | | | | Remote: add Prune option to PushOptions | ||||
| * | add Prune option to PushOptions | Stanislav Seletskiy | 2019-07-25 | 1 | -1/+58 |
| | | | | | | | | Signed-off-by: Stanislav Seletskiy <s.seletskiy@gmail.com> | ||||
* | | git : allows to create a Remote without a Repository | Valentin Cocaud | 2019-06-17 | 1 | -32/+32 |
|/ | | | | Signed-off-by: Valentin Cocaud <v.cocaud@gmail.com> | ||||
* | git: fix goroutine block while pushing a remote | Javi Fontan | 2019-03-01 | 1 | -0/+9 |
| | | | | | | | | | On session.ReceivePack error the gororutine doing the encoding got blocked either writing objects to the pipe or sending error to the done channel. The problem did not cause a perceived problem but left blocked goroutines. Signed-off-by: Javi Fontan <jfontan@gmail.com> | ||||
* | remote: use reference deltas on push when the remote server does not | Benjamin Ash | 2018-10-16 | 1 | -0/+23 |
| | | | | | | support offset deltas Signed-off-by: Benjamin Ash <bash@intelerad.com> | ||||
* | Expose Storage cache. | kuba-- | 2018-09-07 | 1 | -22/+13 |
| | | | | Signed-off-by: kuba-- <kuba@sourced.tech> | ||||
* | Remote.Fetch: error on missing remote reference | Máximo Cuadros | 2018-06-21 | 1 | -0/+14 |
| | | | | Signed-off-by: Máximo Cuadros <mcuadros@gmail.com> | ||||
* | git: remote, Add shallow commits instead of substituting. Fixes #412 | Javi Fontan | 2018-04-16 | 1 | -0/+52 |
| | | | | | | | | | | updateShallow substituted the previous shallow list with the one returned by the UploadPackResponse. If the repository had previous shallow commits these are deleted from the list. This change adds the new shallow hashes to the old ones. Signed-off-by: Javi Fontan <jfontan@gmail.com> | ||||
* | dotgit: add CheckAndSetReference tests | Jeremy Stribling | 2017-11-28 | 1 | -2/+19 |
| | |||||
* | remote: add test for non-force, fast-forward fetching | Jeremy Stribling | 2017-11-27 | 1 | -0/+42 |
| | |||||
* | all: fixes for ineffective assign | ferhat elmas | 2017-11-26 | 1 | -0/+3 |
| | |||||
* | update to go-billy.v4 and go-git-fixtures.v3 | Máximo Cuadros | 2017-11-23 | 1 | -2/+2 |
| | | | | Signed-off-by: Máximo Cuadros <mcuadros@gmail.com> | ||||
* | remote: add the last 100 commits for each ref in haves list | Jeremy Stribling | 2017-10-05 | 1 | -1/+5 |
| | | | | | | | | | | | | | If the local ref is not an ancestor of the remote ref being fetched, then when we send an UploadPack request with that local ref as one of the Haves, the remote will not recognize it, and will think we are asking for the entire history of the repo, even if there's a common ancestor. To do this right, we need to support the multi-ack protocol so we can negotiate a common commit. That's hard though; this is a quick fix just to include the previous 100 commits for each local ref in the Haves list, and hope that one of them is the common commit. | ||||
* | Merge pull request #609 from darkowlzz/ls-remote | Máximo Cuadros | 2017-10-04 | 1 | -0/+31 |
|\ | | | | | remote: add support for ls-remote | ||||
| * | TestList: explicitly check the refs in fixture | Sunny | 2017-10-04 | 1 | -27/+21 |
| | | |||||
| * | Create ListOptions and rename LSRemote to List. | Sunny | 2017-10-04 | 1 | -5/+3 |
| | | |||||
| * | remote: add support for ls-remote | Sunny | 2017-10-02 | 1 | -0/+39 |
| | | |||||
* | | remote: iterate over reference only once | Miguel Molina | 2017-09-05 | 1 | -13/+15 |
|/ | | | | Signed-off-by: Miguel Molina <miguel@erizocosmi.co> | ||||
* | Remote.Fetch Tags logic improvement and fix NoTags | Máximo Cuadros | 2017-09-04 | 1 | -1/+1 |
| | |||||
* | remote: avoid expensive revlist operation when only deleting refs | Jeremy Stribling | 2017-08-28 | 1 | -0/+36 |
| | |||||
* | Merge pull request #531 from mcuadros/ref-name | Máximo Cuadros | 2017-08-02 | 1 | -1/+1 |
|\ | | | | | plumbing: moved `Reference.Is*` methods to `ReferenceName.Is*` | ||||
| * | *: use the new API for ReferenceName.Is* methods | Máximo Cuadros | 2017-08-02 | 1 | -1/+1 |
| | | |||||
* | | config: multiple values in RemoteConfig (URLs and Fetch) | Santiago M. Mola | 2017-08-01 | 1 | -28/+27 |
|/ | | | | | | | | * Change `URL string` to `URL []string` in `RemoteConfig`, since git allows multiple URLs per remote. See: http://marc.info/?l=git&m=116231242118202&w=2 * Fix marshalling of multiple fetch refspecs. | ||||
* | *: package context support in Repository, Remote and Submodule | Máximo Cuadros | 2017-07-26 | 1 | -0/+41 |
| | |||||
* | Merge pull request #498 from mcuadros/fix-push | Máximo Cuadros | 2017-07-24 | 1 | -115/+75 |
|\ | | | | | remote: push, update remote refs on push | ||||
| * | remote: push, update remote refs on push | Máximo Cuadros | 2017-07-22 | 1 | -115/+75 |
| | | |||||
* | | Implement a NoTags mode for fetch that mimics git fetch --no-tags | Nick Thomas | 2017-07-22 | 1 | -0/+16 |
|/ | |||||
* | Merge pull request #485 from mcuadros/fetch-tagsv4.0.0-rc12 | Máximo Cuadros | 2017-07-17 | 1 | -53/+107 |
|\ | | | | | remote: fetch, correct behavior on tags | ||||
| * | remote: fetch, correct behaviour on tags | Máximo Cuadros | 2017-07-17 | 1 | -53/+107 |
| | | |||||
* | | remote: avoid duplicate haves | Máximo Cuadros | 2017-07-13 | 1 | -0/+19 |
|/ | |||||
* | remote: fix push delete, closes #466 | Santiago M. Mola | 2017-07-07 | 1 | -0/+47 |
| | | | | | Refspecs for deletes were not being used to produce delete commands on the update request. | ||||
* | Update local remote references during fetch even if no pack needs to be received | Ori Rawlings | 2017-06-19 | 1 | -0/+24 |
| | |||||
* | *: upgrade to go-billy.v3, merge | Máximo Cuadros | 2017-06-18 | 1 | -7/+7 |
| | |||||
* | do not convert local paths to URL | Santiago M. Mola | 2017-04-28 | 1 | -15/+14 |
| | | | | | | | * Do not convert local paths to URLs, just keep them as they are. * This way we add support for Windows without taking care of Windows path-to-URL conversion. | ||||
* | add test for tags push, closes #354 | Santiago M. Mola | 2017-04-27 | 1 | -0/+45 |
| | |||||
* | support force push (refspec with +) | Santiago M. Mola | 2017-04-27 | 1 | -0/+87 |
| | | | | | * add support for force push * add support for push of new references | ||||
* | use go-billy.v2 version | Antonio Jesus Navarro Perez | 2017-03-10 | 1 | -1/+1 |
| | |||||
* | project: move imports from srcd.works to gopkg.in | Antonio Jesus Navarro Perez | 2017-03-07 | 1 | -7/+7 |
| | | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release. | ||||
* | submodule init implementation | Máximo Cuadros | 2017-02-12 | 1 | -1/+2 |
| |