当我尝试推送到服务器时,git-lfs 给出“锁定 API”错误

当我尝试推送到服务器时,git-lfs 给出“锁定 API”错误

我正在尝试git lfs在我的服务器上启用它,但是它不起作用。

该服务器已经托管了 git 存储库,并且运行良好。

该服务器正在运行 Debian bookworm。

我在服务器上做了什么:

$ git lfs install
Git LFS initialized.
$ mkdir test_repo
$ cd test_repo
$ git init --bare

我在客户端做了什么:

$ git clone ssh://<...>:/<path..>/test_repo
$ cd test_repo
$ echo "hello world" > file.txt
$ git lfs track *.*
$ git add .
$ git commit -m "initial commit"

现在当我按下:

$ git push origin master
Remote "origin" does not support the Git LFS locking API. Consider disabling it with:
  $ git config lfs.<unknown>.locksverify false
batch request: missing protocol: "<unknown>"/s

“锁定 API” 似乎有问题。

我怎样才能解决这个问题 ?

我已经尝试禁用“锁定 API”,但不知道具体该怎么做。

相关内容