[Pharo-users] Re: Loading from a git repository with Metacello on a running seaside image

2022-04-22 Thread Esteban Lorenzano
Hi Emilio, You need something like this: Metacello new repository: 'github://pharo-spec/Spec:Pharo10'; baseline: 'Spec2'; onConflict: [ :e | e useIncoming ]; onUpgrade: [ :e | e useIncoming ]; ignoreImage; load ignoreImage, onConflict, onUpgrade. BUT if your image already has a baseline for your

[Pharo-users] Loading from a git repository with Metacello on a running seaside image

2022-04-22 Thread Emilio Oca
Hi List I need some help with Metacello, and may be git too I would like to be able to, in a running headless image, load the last commit of a git repo Something like Metacello new baseline:'MyProject'; repository: 'github://myUser/MyProject:main/myProject'; load. works just once and may open so