Re: [Pharo-users] Adding an Iceberg repository at startup

2017-11-10 Thread Stephane Ducasse
I will add this to the tips and tricks except is someone is faster than me. Stef On Fri, Nov 10, 2017 at 7:26 PM, Mariano Martinez Peck wrote: > Thanks guys. I ended up doing this: > > StartupPreferencesLoader default executeAtomicItems: { > StartupAction > name: '02 Iceberg' > code: [ > | repo

Re: [Pharo-users] Adding an Iceberg repository at startup

2017-11-10 Thread Mariano Martinez Peck
Thanks guys. I ended up doing this: StartupPreferencesLoader default executeAtomicItems: { StartupAction name: '02 Iceberg' code: [ | repo | IceCredentialsProvider default sshCredentials username: 'git'; publicKey: '/Users/mariano/.ssh/id_rsa_github.pub'; privateKey: '/Users/mariano/.ssh/id_rsa_g

Re: [Pharo-users] Adding an Iceberg repository at startup

2017-11-10 Thread Peter Uhnák
You can create repositories programatically. repo := IceRepositoryCreator new location: '/home/user/.../'; subdirectory: 'codeSubdirectory'; createRepository. repo register. On Fri, Nov 10, 2017 at 1:11 PM, Mariano Martinez Peck < marianop...@gmail.com> wrote: > I would also like th

Re: [Pharo-users] Adding an Iceberg repository at startup

2017-11-10 Thread Mariano Martinez Peck
I would also like that :) On Fri, Nov 10, 2017 at 6:45 AM, Prof. Andrew P. Black wrote: > I would like to have the git repositories that I’m working from > automatically added to the list of known repositories in Iceberg at startup > time. In other words, I don;t want to have to do a bunch of “