git support for Monticello?

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

git support for Monticello?

senTalker
Hello List,

sorry if this was asked before. I think git/github support for
Monticello is quite new (?).

How to get started? Are there some pointers/documentation somewhere?
How to make Monticello git/github aware?

http://stackoverflow.com/questions/13681510/how-to-get-started-with-git-github-support-for-monticello

Thanks!

Sebastian

Reply | Threaded
Open this post in threaded view
|

Re: git support for Monticello?

senTalker
I have been pointed to:

http://www.slideshare.net/esug/of-metacello-git-scripting-and-things

I'll take a look and try to understand... :-)

2012/12/3 Sebastian Nozzi <[hidden email]>:

> Hello List,
>
> sorry if this was asked before. I think git/github support for
> Monticello is quite new (?).
>
> How to get started? Are there some pointers/documentation somewhere?
> How to make Monticello git/github aware?
>
> http://stackoverflow.com/questions/13681510/how-to-get-started-with-git-github-support-for-monticello
>
> Thanks!
>
> Sebastian

Reply | Threaded
Open this post in threaded view
|

Re: git support for Monticello?

Camillo Bruni-3
.. and if you have too much energy left:
we started a full smalltalk implementation of git but we miss the protocols ;)
http://ss3.gemstone.com/ss/FSGit-Experimental.html


On 2012-12-03, at 09:09, Sebastian Nozzi <[hidden email]> wrote:

> I have been pointed to:
>
> http://www.slideshare.net/esug/of-metacello-git-scripting-and-things
>
> I'll take a look and try to understand... :-)
>
> 2012/12/3 Sebastian Nozzi <[hidden email]>:
>> Hello List,
>>
>> sorry if this was asked before. I think git/github support for
>> Monticello is quite new (?).
>>
>> How to get started? Are there some pointers/documentation somewhere?
>> How to make Monticello git/github aware?
>>
>> http://stackoverflow.com/questions/13681510/how-to-get-started-with-git-github-support-for-monticello
>>
>> Thanks!
>>
>> Sebastian
>


Reply | Threaded
Open this post in threaded view
|

Re: git support for Monticello?

senTalker
2012/12/3 Camillo Bruni <[hidden email]>:
> .. and if you have too much energy left:
> we started a full smalltalk implementation of git but we miss the protocols ;)
> http://ss3.gemstone.com/ss/FSGit-Experimental.html

Cool. How does it work? Are you leveraging the installed tools (git)
or a specific library, or implementing the whole thing in Pharo?

Right now I was only interested in using a github-hosted project (Ratpack) :-)

Reply | Threaded
Open this post in threaded view
|

Re: git support for Monticello?

Camillo Bruni-3

On 2012-12-03, at 09:24, Sebastian Nozzi <[hidden email]> wrote:

> 2012/12/3 Camillo Bruni <[hidden email]>:
>> .. and if you have too much energy left:
>> we started a full smalltalk implementation of git but we miss the protocols ;)
>> http://ss3.gemstone.com/ss/FSGit-Experimental.html
>
> Cool. How does it work? Are you leveraging the installed tools (git)
> or a specific library, or implementing the whole thing in Pharo?

it's fully implemented in Pharo. What works perfectly right now is modifying local git repositories:
- look at all the git structures in a repository
- modify the structures (add commits and files)

missing is push and pull support due to the lack of a proper protocol implementation ;)

> Right now I was only interested in using a github-hosted project (Ratpack) :-)

then FileTree is definitely your choice :)