Problem with gitfiletree in pharo 5

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Problem with gitfiletree in pharo 5

NorbertHartl
Today I tried to use a pharo 5 image for my project. I installed gitfiletree but could not access my existing git repo I use with pharo 4.
In

MCFileTreeGitRepository>>#gitBranchs

the output for the git command is an empty string while executing the same on the console gives me

* master

Is this a OSProcess problem? Where to look at to find the culprit?

thanks,

Norbert


Reply | Threaded
Open this post in threaded view
|

Re: Problem with gitfiletree in pharo 5

Thierry Goubier
Hi Norbert,

yes, there is an issue with the OSProcess plugin on Mac which isn't
solved yet. In the meantime, Mariano's OSSubprocess works and a version
of GitFileTree with it is available this way:

Metacello new
          baseline: 'FileTree';
          repository: 'github://dalehenrich/filetree:issue_171/repository';
          load: 'Git'

[1]
http://forum.world.st/ANN-OSSubprocess-first-milestone-tp4871382p4871459.html

Thierry

Le 15/02/2016 10:56, Norbert Hartl a écrit :

> Today I tried to use a pharo 5 image for my project. I installed gitfiletree but could not access my existing git repo I use with pharo 4.
> In
>
> MCFileTreeGitRepository>>#gitBranchs
>
> the output for the git command is an empty string while executing the same on the console gives me
>
> * master
>
> Is this a OSProcess problem? Where to look at to find the culprit?
>
> thanks,
>
> Norbert
>
>
>


Reply | Threaded
Open this post in threaded view
|

Re: Problem with gitfiletree in pharo 5

NorbertHartl
Thanks that works!

Norbert

> Am 15.02.2016 um 11:17 schrieb Thierry Goubier <[hidden email]>:
>
> Hi Norbert,
>
> yes, there is an issue with the OSProcess plugin on Mac which isn't solved yet. In the meantime, Mariano's OSSubprocess works and a version of GitFileTree with it is available this way:
>
> Metacello new
>         baseline: 'FileTree';
>         repository: 'github://dalehenrich/filetree:issue_171/repository';
>         load: 'Git'
>
> [1] http://forum.world.st/ANN-OSSubprocess-first-milestone-tp4871382p4871459.html
>
> Thierry
>
> Le 15/02/2016 10:56, Norbert Hartl a écrit :
>> Today I tried to use a pharo 5 image for my project. I installed gitfiletree but could not access my existing git repo I use with pharo 4.
>> In
>>
>> MCFileTreeGitRepository>>#gitBranchs
>>
>> the output for the git command is an empty string while executing the same on the console gives me
>>
>> * master
>>
>> Is this a OSProcess problem? Where to look at to find the culprit?
>>
>> thanks,
>>
>> Norbert
>>
>>
>>
>
>