diff options
author | ConcurrentCrab <102517200+ConcurrentCrab@users.noreply.github.com> | 2024-09-27 19:57:37 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 10:27:37 -0400 |
commit | 8a9fd7f771f4f694594a0652e95ddda2b7479b3e (patch) | |
tree | eaad5bf33ca2a745645fc2368b4b01d598e35486 /go.mod | |
parent | fdb1df9eca2f7adabf08883042325af26c3fd509 (diff) | |
download | gitea-8a9fd7f771f4f694594a0652e95ddda2b7479b3e.tar.gz gitea-8a9fd7f771f4f694594a0652e95ddda2b7479b3e.zip |
Add pure SSH LFS support (#31516)
Fixes #17554
/claim #17554
Docs PR https://gitea.com/gitea/docs/pulls/49
To test, run pushes like: `GIT_TRACE=1` git push. The trace output
should mention "pure SSH connection".
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -35,6 +35,7 @@ require ( github.com/blevesearch/bleve/v2 v2.4.2 github.com/buildkite/terminal-to-html/v3 v3.12.1 github.com/caddyserver/certmagic v0.21.3 + github.com/charmbracelet/git-lfs-transfer v0.2.0 github.com/chi-middleware/proxy v1.1.1 github.com/dimiro1/reply v0.0.0-20200315094148-d0136a4c9e21 github.com/djherbis/buffer v1.2.0 @@ -197,6 +198,7 @@ require ( github.com/fatih/color v1.17.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fxamacker/cbor/v2 v2.6.0 // indirect + github.com/git-lfs/pktline v0.0.0-20230103162542-ca444d533ef1 // indirect github.com/go-ap/errors v0.0.0-20240304112515-6077fa9c17b0 // indirect github.com/go-asn1-ber/asn1-ber v1.5.7 // indirect github.com/go-enry/go-oniguruma v1.2.1 // indirect @@ -329,6 +331,8 @@ replace github.com/shurcooL/vfsgen => github.com/lunny/vfsgen v0.0.0-20220105142 replace github.com/nektos/act => gitea.com/gitea/act v0.259.1 +replace github.com/charmbracelet/git-lfs-transfer => gitea.com/gitea/git-lfs-transfer v0.2.0 + // TODO: This could be removed after https://github.com/mholt/archiver/pull/396 merged replace github.com/mholt/archiver/v3 => github.com/anchore/archiver/v3 v3.5.2 |