简体   繁体   English

命令“git lfs pull origin”返回状态码1; 标准错误:git:“lfs”不是 git 命令

[英]Command "git lfs pull origin" returned status code 1; stderr: git: 'lfs' is not a git command

Installed the git-lfs on our mac slaves and followed the artical at https://medium.com/@priya_talreja/git-lfs-setup-in-jenkins-ee80879007e3 .在我们的 mac slave 上安装了 git-lfs 并按照https://medium.com/@priya_talreja/git-lfs-setup-in-jenkins-ee80879007e3的文章。 to build jenkins job建立 jenkins 工作

we are getting the following error:我们收到以下错误:

Git LFS initialized.     
xxxx
xxxx
xxxx
Enabling Git LFS pull
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 94723c3732a48a49f41a70248233e52b015632cb # timeout=10
 > git config --get remote.origin.url # timeout=10
 > git lfs pull origin # timeout=10
FATAL: Could not checkout 94723c3732a48a49f41a70248233e52b015632cb
hudson.plugins.git.GitException: Command "git lfs pull origin" returned status code 1:
stdout: 
stderr: git: 'lfs' is not a git command. See 'git --help'. 

out of 4 nodes, one node is working others are not.在 4 个节点中,一个节点正在工作,其他节点没有。 [Mac OS X; [Mac OS X; Version: 10.14.6] git versions: 2.22.0 / 2.21.0 /2.23.0 [Error getting on ver: 2.22.0 and 2.23.0] git-lfs version: 2.11.0版本:10.14.6] git 版本:2.22.0 / 2.21.0 /2.23.0 [错误获取版本:2.22.0 和 2.23.0] git-lfs 版本:2.11.0

Faced same issue in my RHEL-7 machine and followed below steps to make it work.在我的 RHEL-7 机器中遇到了同样的问题,并按照以下步骤使其工作。 (git lfs was missing in my machine, installed same using below steps) (我的机器中缺少 git lfs,使用以下步骤安装相同)

 $ sudo yum install git

 $ curl -s https://setup.ius.io/ | sudo bash 

 $ sudo yum install git2u

 $ curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash

 $ sudo yum install git-lfs

 $ git lfs install

Reference link: https://github.com/git-lfs/git-lfs/wiki/Installation参考链接: https://github.com/git-lfs/git-lfs/wiki/Installation

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM