pharo icon indicating copy to clipboard operation
pharo copied to clipboard

Metacello support for GitLab subgroups

Open JanBliznicenko opened this issue 4 months ago • 0 comments

Metacello load scripts cannot handle GitLab repositories with subgroups, like https://gitlab.com/jantopgroup/middlegroup/innergroup/project

The following script does not work:

Metacello new
  baseline: 'SubgroupsProject';
  repository: 'gitlab://jantopgroup/middlegroup/innergroup/project';
  load.

It causes metacello to think that "middlegroup" is project (repository) name and "innergroup/project" to be subdirectory with code.

Using [email protected]:jantopgroup/middlegroup/innergroup/project.git in Git Repositories Browser (Iceberg) works.

JanBliznicenko avatar Oct 12 '24 09:10 JanBliznicenko