Re: [Pharo-users] Load a project from GitHub with command line

2016-04-17 Thread Thierry Goubier
Le 17/04/2016 17:17, Damien Pollet a écrit : On 17 April 2016 at 16:47, Thierry Goubier mailto:thierry.goub...@gmail.com>> wrote: In fact it is there, but indirect (you can give a $WHERE when you create a remote git repository with Monticello: it's the name parameter). But I'd have

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-17 Thread Damien Pollet
On 17 April 2016 at 16:47, Thierry Goubier wrote: > In fact it is there, but indirect (you can give a $WHERE when you create a > remote git repository with Monticello: it's the name parameter). > But I'd have to somehow create the monticello repo then pass it to metacello? > But, if we focus o

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-17 Thread Thierry Goubier
Le 17/04/2016 16:59, Peter Uhnák a écrit : 'gitfiletree://github.com/dalehenrich/filetree:pharo5.0/repository/?where=/home/username/project/filetree ' (is that a correct url syntax?)

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-17 Thread Peter Uhnák
> > 'gitfiletree:// > github.com/dalehenrich/filetree:pharo5.0/repository/?where=/home/username/project/filetree' > (is that a correct url syntax?) Isn't this overloading the url a bit? Why not: Metacello new baseline: 'FT'; repository: 'gitfiletree:// github.com/dalehenri

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-17 Thread Thierry Goubier
Le 17/04/2016 16:31, Damien Pollet a écrit : Is there a convenient way to control where the clone will be made in the local filesystem? Meaning: using something else than the implicit value for $WHERE: git clone $GITHUB_CLONE_URL $WHERE In fact it is there, but indirect (you can give a $WHERE

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-17 Thread Damien Pollet
Is there a convenient way to control where the clone will be made in the local filesystem? Meaning: using something else than the implicit value for $WHERE: git clone $GITHUB_CLONE_URL $WHERE On 15 April 2016 at 19:08, Thierry Goubier wrote: > Le 15/04/2016 18:49, Damien Pollet a écrit : > >>

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread stepharo
Yes it looks like :) Le 15/4/16 20:06, Thomas Heniart a écrit : Thanks a lot for your help Thierry, this is just perfect :D Cheers, Thomas 2016-04-15 19:08 GMT+02:00 Thierry Goubier >: Le 15/04/2016 18:49, Damien Pollet a écrit : On 15 April 20

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thomas Heniart
Thanks a lot for your help Thierry, this is just perfect :D Cheers, Thomas 2016-04-15 19:08 GMT+02:00 Thierry Goubier : > Le 15/04/2016 18:49, Damien Pollet a écrit : > >> On 15 April 2016 at 17:39, Thierry Goubier > > wrote: >> >> And then you can load your

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thierry Goubier
Le 15/04/2016 18:49, Damien Pollet a écrit : On 15 April 2016 at 17:39, Thierry Goubier mailto:thierry.goub...@gmail.com>> wrote: And then you can load your project with: Metacello new baseline: 'YourTribes'; repository: 'gitfiletree://github.com/HappyPharoHackers/Your

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Damien Pollet
On 15 April 2016 at 17:39, Thierry Goubier wrote: > And then you can load your project with: > > Metacello new > baseline: 'YourTribes'; > repository: 'gitfiletree://github.com/HappyPharoHackers/YourTribes'; > load: #(tests) > So this does the clone directly from github? YAY :D

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thierry Goubier
Hi Thomas, 2016-04-15 17:19 GMT+02:00 Thomas Heniart : > I have another question question > > My project is now perfectly loaded > > Assuming that I want to work from this image, how can I commit, push to my > repository without using Git command lines or a Git desktop client > > I've seen some t

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thomas Heniart
I have another question question My project is now perfectly loaded Assuming that I want to work from this image, how can I commit, push to my repository without using Git command lines or a Git desktop client I've seen some threads about GitFileTree but I don't understand how to use it :/ Chee

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thomas Heniart
2016-04-15 15:59 GMT+02:00 Esteban Lorenzano : > you are not saving the image after eval: > > Works perfectly :) > ./pharo Pharo.image eval --save “ > Metacello new > baseline: #YourTribes; > repository: 'github://HappyPharoHackers/YourTribes'; >

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Esteban Lorenzano
you are not saving the image after eval: ./pharo Pharo.image eval --save “ Metacello new baseline: #YourTribes; repository: 'github://HappyPharoHackers/YourTribes'; load: #(tests)" (also your line has a syntax error but I suppose that’s a

Re: [Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thierry Goubier
Hi Thomas, 2016-04-15 15:51 GMT+02:00 Thomas Heniart : > Hello, > > I tried this: > ./pharo Pharo.image eval "Metacello new baseline: #YourTribes; repository: > 'github://HappyPharoHackers/YourTribes; load: #(tests)' > You need to ask your eval to save the image with: eval --save Thierry > >

[Pharo-users] Load a project from GitHub with command line

2016-04-15 Thread Thomas Heniart
Hello, I tried this: ./pharo Pharo.image eval "Metacello new baseline: #YourTribes; repository: 'github://HappyPharoHackers/YourTribes; load: #(tests)' It seems to load everything but unfortunately when I open the image, I don't see my packages And when I evaluate the Metacello expression in the