我正试图从Github(qazxsw poi)将代码拉入你的服务器。
这之前有用。但是,现在,我收到以下错误:
git pull origin master
我用$ git pull origin master
From github.com:org-name/repo-name
* branch master -> FETCH_HEAD
Updating 8024663e..e458e5c1
fatal: path/to/file.msi: smudge filter lfs failed
运行了同样的命令:
GIT_TRACE=1
我验证了我的ssh凭据是正确的:
$ GIT_TRACE=1 git pull origin master
19:25:26.331064 git.c:371 trace: built-in: git 'pull' 'origin' 'master'
19:25:26.333947 run-command.c:350 trace: run_command: 'fetch' '--update-head-ok' 'origin' 'master'
19:25:26.334661 exec_cmd.c:116 trace: exec: 'git' 'fetch' '--update-head-ok' 'origin' 'master'
19:25:26.337625 git.c:371 trace: built-in: git 'fetch' '--update-head-ok' 'origin' 'master'
19:25:26.344457 run-command.c:350 trace: run_command: 'ssh' '[email protected]' 'git-upload-pack '\''org-name/repo-name.git'\'''
19:25:26.925565 run-command.c:350 trace: run_command: 'rev-list' '--objects' '--stdin' '--not' '--all' '--quiet'
19:25:26.937016 run-command.c:350 trace: run_command: 'rev-list' '--objects' '--stdin' '--not' '--all' '--quiet'
19:25:26.937833 exec_cmd.c:116 trace: exec: 'git' 'rev-list' '--objects' '--stdin' '--not' '--all' '--quiet'
19:25:26.941292 git.c:371 trace: built-in: git 'rev-list' '--objects' '--stdin' '--not' '--all' '--quiet'
From github.com:org-name/repo-name
* branch master -> FETCH_HEAD
19:25:26.994717 run-command.c:1130 run_processes_parallel: preparing to run up to 1 tasks
19:25:26.994880 run-command.c:1162 run_processes_parallel: done
19:25:26.995780 run-command.c:350 trace: run_command: 'gc' '--auto'
19:25:26.996735 exec_cmd.c:116 trace: exec: 'git' 'gc' '--auto'
19:25:27.000596 git.c:371 trace: built-in: git 'gc' '--auto'
19:25:27.002716 run-command.c:350 trace: run_command: 'merge' 'FETCH_HEAD'
19:25:27.003445 exec_cmd.c:116 trace: exec: 'git' 'merge' 'FETCH_HEAD'
19:25:27.006078 git.c:371 trace: built-in: git 'merge' 'FETCH_HEAD'
Updating 8024663e..e458e5c1
19:25:27.420945 run-command.c:350 trace: run_command: 'git-lfs filter-process'
19:25:27.470865 run-command.c:209 trace: exec: '/bin/sh' '-c' 'git-lfs filter-process' 'git-lfs filter-process'
trace git-lfs: run_command: 'git' version
trace git-lfs: run_command: 'git' config -l
trace git-lfs: Initialize filter-process
trace git-lfs: Read filter-process request.
trace git-lfs: Read filter-process request.
fatal: path/to/file.msi: smudge filter lfs failed
19:25:27.998635 run-command.c:42 trace: run_command: running exit handler for pid 18022
而且,事实上,我知道凭据是可以的,因为$ ssh -T [email protected]
Hi user-name! You've successfully authenticated, but GitHub does not provide shell access.
将关闭pull
文件(以及我已完成的其他小文件更改):
.gitattributes
我验证了Git LFS似乎配置正确:
file.msi filter=lfs diff=lfs merge=lfs -text
我找到了这个$ git config -l
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
...
,我尝试了所有三个步骤:
Github issue
第一步询问我的用户名。因此,正如它所说,Git LFS似乎没有缓存任何东西。
我对Git LFS没有多少经验,坦率地说,我对如何处理这个问题缺乏想法。
我最近采取的两项措施可能会破坏一些东西:
$ echo "protocol=https\nhost=github.com" | git credential fill
$ echo "protocol=https\nhost=github.com" | git credential fill | git credential reject
$ echo "protocol=https\nhost=github.com" | git credential fill | git credential approve
(尽管最近似乎添加了支持)。所以,我们切换到用户密钥。两个密钥都通过Git LFS didn't support deployment keys测试确认。不过,也许存在身份验证问题?任何你可以借出的帮助将不胜感激。
PS - 如果我的匿名造成混乱,我很抱歉。我用ssh -T [email protected]
替换了我们的实际IP地址;我们的组织名称是X.X.X.X
;我们的回购品名称是org-name
;我们的Github用户使用repo-name
; user-name
的文件名;还有一些东西。
编辑5/16/17:增加语言,以明确它曾经工作......而且我打破了它。
在我的情况下,经过SSH身份验证的存储库已更新为使用来自其他客户端的LFS,而在我这边,Git-LFS不知道SSH remote-url。我做了什么修复它是以下:
将file.msi
中配置的URL(remote.origin.url
的推送URL)复制到origin
(URL LFS使用的URL):
lfs.url
(如果您的遥控器未命名为$ git config lfs.url $(git config remote.origin.url)
,则更改为您的远程名称。)
然后跑
origin
显示URL并确认它确实包含SSH URL,而不是某些HTTP / HTTPS URL。
然后你可以
$ git config lfs.url
完成。
如果你之前搞砸了,$ git pull
和master
在某种程度上分歧,就像我的情况那样你可能需要orgin/master
(这不会要求并覆盖主分支的本地版本,所以要小心并谨慎执行!)。
另见:git checkout -fB master origin/master