Thanks Goran.
Something related I wrote several months ago:�http://marianopeck.wordpress.com/2011/11/08/migrating-projects-to-squeaksource3/
Hey!
I just moved one of my projects from Squeaksource.com to SmalltalkHub.com and realized others may want to know how to do this:
1. Create new corresponding Project on Smalltalkhub. Using the same name and tags is probably smart. Also, I added a BOLD little remark with a date claiming this is now the PRIMARY repository for Phriak, if people wonder. I also added the following on top of the project on Squeaksource (you can still edit stuff):
<b>NOTE: This project has been moved to <a href="http://smalltalkhub.com/#!/~gokr/Phriak">http://smalltalkhub.com/#!/~gokr/Phriak</a></b>!!!
<p>
2. Add contributors (I just looked through my commits to figure out who they all are) by going to "Settings" (or press "Edit info" button) on the Project. World writeable is not available. I also sent an email to my contributors mentioning this move :)
3. Copy over all old snapshots, using code like this (thanks Nicolas, although it should be "fetch" not "pull" and one needs "/main" at end of hub URL):
� � � � Gofer it
� � � � � � � � squeaksource: 'Phriak';
� � � � � � � � package: 'Phriak';
� � � � � � � � package: 'ConfigurationOfPhriak';
� � � � � � � � fetch.
� � � � Gofer it
� � � � � � � � url: 'http://smalltalkhub.com/mc/gokr/Phriak/main'
� � � � � � � � username: 'gokr' password: 'secret';
� � � � � � � � package: 'Phriak';
� � � � � � � � package: 'ConfigurationOfPhriak';
� � � � � � � � push.
...and that's it I think!
regards, G�ran