Iceberg:LGit_GIT_ERROR:git_remote_callback上的版本0无效

问题描述 投票:3回答:1

我尝试使用Pharo将项目加载到新的Iceberg图像时出现此错误:

LGit_GIT_ERROR: Invalid version 0 on git_remote_callback

在加载项目之前,我在系统>设置>工具>软件配置管理> Icegerg中选中了“启用Metacelo集成”和“使用自定义SSH密钥”。然后我尝试运行以下Metacello脚本,但它引发了一个错误

Metacello new
    baseline: 'DataFrame';
    repository: 'github://PolyMathOrg/DataFrame';
    load.

有人能告诉我这个错误信息意味着什么以及如何处理它?

git smalltalk pharo
1个回答
2
投票

我已根据instructions on GitHub更新Iceberg解决了这个问题:

MetacelloPharoPlatform select.
#(
    'BaselineOfTonel'
    'BaselineOfLibGit'
    'BaselineOfIceberg'
    'Iceberg-UI' 
    'Iceberg-Plugin-GitHub' 
    'Iceberg-Plugin' 
    'Iceberg-Metacello-Integration' 
    'Iceberg-Libgit-Tonel' 
    'Iceberg-Libgit-Filetree' 
    'Iceberg-Libgit' 
    'Iceberg' 
    'LibGit-Core'
    'MonticelloTonel-Tests'
    'MonticelloTonel-Core'
    'MonticelloTonel-FileSystem' ) 
do: [ :each | (each asPackageIfAbsent: [ nil ]) ifNotNil: #removeFromSystem ].
Metacello new
    baseline: 'Iceberg';
    repository: 'github://pharo-vcs/iceberg:v0.6.5';
    load.
© www.soinside.com 2019 - 2024. All rights reserved.