Iceberg: LGit_GIT_ERROR: Invalid version 0 on git_remote_callback
Iceberg: LGit_GIT_ERROR: Invalid version 0 on git_remote_callback
我在尝试将我的项目加载到新的 Pharo image using Iceberg:
时遇到此错误
LGit_GIT_ERROR: Invalid version 0 on git_remote_callback
在加载我的项目之前,我在 系统 > 设置 > 工具 > 软件配置管理 > Icegerg 中检查了 "Enable Metacelo Integration" 和 "Use custom SSH keys"。然后我尝试了 运行 以下 Metacello 脚本,但它引发了一个错误
Metacello new
baseline: 'DataFrame';
repository: 'github://PolyMathOrg/DataFrame';
load.
谁能告诉我这条错误信息是什么意思以及如何处理?
- 图像: Pharo 6.1 64 位 (https://pharo.org/download)
- OS: MacOS High Sierra v.10.13.1
我已经根据 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.
我在尝试将我的项目加载到新的 Pharo image using Iceberg:
时遇到此错误LGit_GIT_ERROR: Invalid version 0 on git_remote_callback
在加载我的项目之前,我在 系统 > 设置 > 工具 > 软件配置管理 > Icegerg 中检查了 "Enable Metacelo Integration" 和 "Use custom SSH keys"。然后我尝试了 运行 以下 Metacello 脚本,但它引发了一个错误
Metacello new
baseline: 'DataFrame';
repository: 'github://PolyMathOrg/DataFrame';
load.
谁能告诉我这条错误信息是什么意思以及如何处理?
- 图像: Pharo 6.1 64 位 (https://pharo.org/download)
- OS: MacOS High Sierra v.10.13.1
我已经根据 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.