diff options
author | Paulo Gomes <pjbgf@linux.com> | 2023-12-03 19:56:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-03 19:56:47 +0000 |
commit | cec7da63ca0412fce55a0bf0715b7ba44a41eaa2 (patch) | |
tree | 4bb09922af1faa0caca922f0e22f5ba341c970e2 /go.mod | |
parent | 4f614891047bae5d0f7a253f014175505b9821d7 (diff) | |
parent | 8b47ceb1aa854f3c3bfa1c347157a04324fcd51e (diff) | |
download | go-git-cec7da63ca0412fce55a0bf0715b7ba44a41eaa2.tar.gz |
Merge pull request #953 from pjbgf/alternates
storage: filesystem, Add option to set a specific FS for alternates
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -20,6 +20,7 @@ require ( github.com/pjbgf/sha1cd v0.3.0 github.com/sergi/go-diff v1.1.0 github.com/skeema/knownhosts v1.2.1 + github.com/stretchr/testify v1.8.4 github.com/xanzy/ssh-agent v0.3.3 golang.org/x/crypto v0.16.0 golang.org/x/net v0.19.0 @@ -33,10 +34,13 @@ require ( github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect github.com/cloudflare/circl v1.3.3 // indirect github.com/cyphar/filepath-securejoin v0.2.4 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rogpeppe/go-internal v1.11.0 // indirect golang.org/x/mod v0.12.0 // indirect golang.org/x/tools v0.13.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect ) |