@thesion, did not include ConfigurationOfLibGit>>changeRepositoryType looks like you are trying to switch repositories in midstream ... with a repo class that you just loaded ... the issue (I think) is that a baseline does remember/record the repo that is was loaded from, so removing the repo might cause other problems ... It might be necessary to reload the baseline from the newly created repo ...
Anyway, I was able to load the baseline into Pharo4.0 with the following:
Metacello new
baseline: 'LibGit';
repository: 'github://dalehenrich/LibGit:issue_26';
load.
@thesion, did not include ConfigurationOfLibGit>>changeRepositoryType looks like you are trying to switch repositories in midstream ... with a repo class that you just loaded ... the issue (I think) is that a baseline does remember/record the repo that is was loaded from, so removing the repo might cause other problems ... It might be necessary to reload the baseline from the newly created repo ...
Anyway, I was able to load the baseline into Pharo4.0 with the following: