aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* transactional/ReferenceStorage: Drop packRefs fieldAbhinav Gupta2021-11-271-4/+0
| | | | | | | | | | | | | | The packRefs field is unused. It is assigned to true from the `PackRefs()` method, but because the method is not on the pointer type, the assignment has no effect. var st ReferenceStorage fmt.Println(st.packRefs) // false st.PackRefs() fmt.Println(st.packRefs) // false Delete the unused field.
* storage/transactional: Use correct config in testAbhinav Gupta2021-11-271-1/+1
| | | | | | The `cfg` loaded from `cs.Config` was unused. It looks like this assertion intended to validate that, not `temporalCfg`, which was already checked above this block.
* Remove unused variables/types/functionsAbhinav Gupta2021-11-2720-85/+12
| | | | | | | | [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.
* Merge pull request #407 from john-cai/jc-support-index-v3Máximo Cuadros2021-11-082-14/+46
|\ | | | | plumbing: format, support v3 index
| * Support v3 indexJohn Cai2021-11-052-14/+46
|/ | | | | | Currently the index encoder does not support the v3 index format. This change adds support to the encoder. This helps to unlock sparse checkout.
* Merge pull request #399 from S-Bohn/add-push-optionsMáximo Cuadros2021-11-015-1/+62
|\ | | | | Remote: PushOptions add push-options
| * plumbing: packp, Add encoding for push-options. Fixes #268.Sören Bohn2021-10-265-1/+62
| | | | | | | | go-git: Add field `Options` to `PushOptions`, wire functionality.
* | Merge pull request #325 from tjamet/push/shaMáximo Cuadros2021-11-013-2/+141
|\ \ | | | | | | Remote: Push, add support to push commits per hashes
| * | Document the push refspec formatThibault Jamet2021-10-281-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Taken from `git help push` and adapted to match the supported features only. Future iterations of this feature may include better support for git "SHA-1 expression", documented in `git help push` as: > any arbitrary "SHA-1 expression", such as master~4 or HEAD (see gitrevisions(7)).
| * | Add support to push commits per hashesThibault Jamet2021-10-282-0/+133
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | Using plain git, the command `git push ${sha}:refs/heads/some-branch` actually ensures that the remote branch `some-branch` points to the commit `${sha}`. In the current version of go-git, this results in an "everything is up to date" error. When a source reference is not found, check the object storage to find the sha. If it is found, consider pushing this exact commit. fixes: #105
* | Merge pull request #402 from enisdenjo/gitdir-info-excludeMáximo Cuadros2021-11-012-12/+30
|\ \ | | | | | | plumbing: gitignore, Read .git/info/exclude file too.
| * | better testsenisdenjo2021-10-271-39/+9
| | |
| * | plumbing: gitignore, Read .git/info/exclude file too.enisdenjo2021-10-272-10/+58
| |/
* | Merge pull request #403 from tklauser/bump-ssh-agent-moduleMáximo Cuadros2021-11-012-23/+15
|\ \ | | | | | | *: update github.com/xanzy/ssh-agent to v0.3.1
| * | Update github.com/xanzy/ssh-agent to v0.3.1Tobias Klauser2021-10-292-23/+15
| |/ | | | | | | | | | | | | Commands used: go get github.com/xanzy/ssh-agent@latest go mod tidy
* | Merge pull request #374 from snebel29/feat/add-exampleMáximo Cuadros2021-11-012-0/+39
|\ \ | |/ |/| examples: added "tag find if head is tagged"
| * examples: add find-if-any-tag-point-headSven Nebel2021-09-242-0/+39
| | | | | | | | Signed-off-by: Sven Nebel <nebel.sven@gmail.com>
* | Merge pull request #375 from noerw/add-remoteurl-optionMáximo Cuadros2021-10-264-5/+33
|\ \ | | | | | | Remote: add RemoteURL to {Fetch,Pull,Push}Options
| * | add testsNorwin2021-09-281-0/+12
| | |
| * | Add RemoteURL to {Fetch,Pull,Push}OptionsNorwin2021-09-153-5/+21
| |/ | | | | | | | | Can be used to override the URL to operate on: RemoteName will be ignored for the actual fetch
* | Merge pull request #385 from john-cai/add-follow-tagsMáximo Cuadros2021-10-264-0/+149
|\ \ | |/ |/| git: add --follow-tags option for pushes
| * git: add --follow-tags option for pushesJohn Cai2021-10-054-0/+149
|/ | | | This PR adds support for the --follow-tags option for pushes.
* plumbing/storer/object: improve grammar Go Doc (#350)Christopher Hunter2021-07-241-4/+4
|
* plumbing: format/packfile, prevent large objects from being read into memory ↵zeripath2021-06-3013-43/+601
| | | | | | | | | | | | | | | completely (#330) This PR adds code to prevent large objects from being read into memory from packfiles or the filesystem. Objects greater than 1Mb are now no longer directly stored in the cache or read completely into memory. This PR differs and improves the previous broken #323 by fixing several bugs in the reader and transparently wrapping ReaderAt as a Reader. Signed-off-by: Andrew Thornton <art27@cantab.net>
* Revert "plumbing: format/packfile, prevent large objects from being read ↵v5.4.2zeripath2021-06-027-422/+1
| | | | | into memory completely (#303)" (#329) This reverts commit 720c192831a890d0a36b4c6720b60411fa4a0159.
* remote: patch default timeout for `List` (#321)v5.4.1Nicolas Chagrass2021-05-241-1/+1
| | | It looks a test value was shipped breaking a lot of the usage of the library.
* plumbing: format/packfile, prevent large objects from being read into memory ↵v5.4.0zeripath2021-05-127-1/+422
| | | | | | | | | | | completely (#303) This PR adds code to prevent large objects from being read into memory from packfiles or the filesystem. Objects greater than 1Mb are now no longer directly stored in the cache or read completely into memory. Signed-off-by: Andrew Thornton <art27@cantab.net>
* plumbing: object/patch, printStat strings.Repeat cause panic (#310) cookeem2021-05-121-2/+10
|
* git: Add support for deepening shallow clones (#311)Marcus Watkins2021-05-123-2/+70
|
* plumbing: transport/http, skip flaky testMáximo Cuadros2021-05-031-0/+4
|
* go modules: update go-git-fixturesMáximo Cuadros2021-05-032-5/+10
|
* *: use go-billy instead of os callsMáximo Cuadros2021-05-0225-568/+521
|
* utils: ioutil, Pipe implementatioMáximo Cuadros2021-05-026-4/+33
|
* plumbing: format, use os.UserHomeDir()Máximo Cuadros2021-05-029-155/+72
|
* Remote: new ListContext function (#278)Xiang Xiujuan2021-04-212-1/+30
|
* plumbing: transport/file, replace os/exec with golang.org/x/sys/execabs to ↵Máximo Cuadros2021-04-173-9/+12
| | | | improve path security
* plumbing: transport/ssh, support more formats in `NewPublicKeys` SSH helper ↵Hidde Beydals2021-04-172-18/+11
| | | | | | | | | | | | | | | (#298) * Add failing ED25519 encrypted PEM test Signed-off-by: Hidde Beydals <hello@hidde.co> * Support more formats in `NewPublicKeys` SSH helper By switching to `ParsePrivateKey` and `ParsePrivateKeyWithPassphrase` from `crypto/ssh`, which has support for RSA (PKCS#1), PKCS#8, DSA (OpenSSL), and ECDSA private keys. Signed-off-by: Hidde Beydals <hello@hidde.co>
* Repository: test, use raw string to avoid double-escape (#288)Jeff Widman2021-04-161-1/+1
|
* *: remove unused unexported const (#286)Jeff Widman2021-04-161-2/+0
| | | This is never used in the code, and not available publicly, so safe to remove.
* *: typo fixes #291 Jeff Widman2021-04-161-2/+2
|
* Minor doc fixes (#287)Jeff Widman2021-04-165-14/+10
|
* plumbing: object, fix TestDecodeAndVerify testMáximo Cuadros2021-04-161-44/+53
|
* Fetch submodules pointing to orphaned but still reachable commits (#284)Nikolay Edigaryev2021-04-061-0/+18
|
* *: replace golang.org/x/crypto/openpgp by ↵Johan Fleury2021-04-0611-98/+61
| | | | github.com/ProtonMail/go-crypto/openpgp (#283)
* plumbing: transport/ssh, fix no agent test on windowsv5.3.0Máximo Cuadros2021-03-291-1/+1
|
* go modules updatedMáximo Cuadros2021-03-262-10/+48
|
* github-action: update go versionMáximo Cuadros2021-03-261-1/+1
|
* *: fix flaky testMáximo Cuadros2021-03-262-1/+5
|
* plumbing: wire up contexts for Transport.AdvertisedReferences (#246)Andrew Suffield2021-03-2610-18/+120
| | | | | * plumbing: wire up contexts for Transport.AdvertisedReferences * add more tests for context wiring
* transport: ssh, fix cloning large repositories (#272)David Cuadrado2021-03-263-1/+33
| | | | | | | | | | | | | | | | | * Fix cloning large repositories Ignore the error on close when the connection is already closed Fixes #70 * Compatibility for go 1.13 Because it's required by the pipeline * Add test for allowing to close a command when the client is already closed This test is for issue #70 * Add debug information for broken test