Gitorious repositories/project pages will be moved to Github

Hi all,

I've finished migrating the gitorious.org repositories to github and
you all should start pointing your remotes to the github equivalent in
the next weeks.

If you're using autoproj, you'll have to use

autoproj switch-config git https://github.com/orocos-toolchain/build.git

but autoproj has not been updated yet to contain an autoproj/github.rb
module... Since rock is in the process of migrating as well, I expect
this will be fixed in the near term.

Instructions if you've checked out manually (without autoproj):

Update one repository (with push access):
cd log4cpp
git remote set-url origin git [..] ...:/orocos-toolchain/log4cpp.git

or without push access:

git remote set-url origin https://github.com/orocos-toolchain/log4cpp.git

Update a bunch of repositories if you have push access:

cd orocos_toolchain
for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
$i); git remote set-url origin
git [..] ...:orocos-toolchain/$(basename $(dirname $i)).git; cd -;
done

If you don't have commit access:

for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
$i); git remote set-url origin
https://github.com/orocos-toolchain/$(basename $(dirname $i)).git; cd
-; done

As of now, we're taking github pull requests and issues. There is no
automatic synchronisation going on from gitorious to github or the
other way around.

Peter

Gitorious repositories/project pages will be moved to Github

Hey.

As far as I can see, you found out how to set up github in autoproj, or ?
At least, with the changes you made to init.rb it should work out of the
box.

Sylvain

2014-05-09 16:37 GMT+02:00 Peter Soetens <peter [..] ...>:

> Hi all,
>
> I've finished migrating the gitorious.org repositories to github and
> you all should start pointing your remotes to the github equivalent in
> the next weeks.
>
> If you're using autoproj, you'll have to use
>
> autoproj switch-config git https://github.com/orocos-toolchain/build.git
>
> but autoproj has not been updated yet to contain an autoproj/github.rb
> module... Since rock is in the process of migrating as well, I expect
> this will be fixed in the near term.
>
> Instructions if you've checked out manually (without autoproj):
>
> Update one repository (with push access):
> cd log4cpp
> git remote set-url origin git [..] ...:/orocos-toolchain/log4cpp.git
>
> or without push access:
>
> git remote set-url origin https://github.com/orocos-toolchain/log4cpp.git
>
> Update a bunch of repositories if you have push access:
>
> cd orocos_toolchain
> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
> $i); git remote set-url origin
> git [..] ...:orocos-toolchain/$(basename $(dirname $i)).git; cd -;
> done
>
> If you don't have commit access:
>
> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
> $i); git remote set-url origin
> https://github.com/orocos-toolchain/$(basename $(dirname $i)).git; cd
> -; done
>
> As of now, we're taking github pull requests and issues. There is no
> automatic synchronisation going on from gitorious to github or the
> other way around.
>
> Peter
> --
> Orocos-Dev mailing list
> Orocos-Dev [..] ...
> http://lists.mech.kuleuven.be/mailman/listinfo/orocos-dev
>

Gitorious repositories/project pages will be moved to Github

Hey.

As far as I can see, you found out how to set up github in autoproj, or ?
At least, with the changes you made to init.rb it should work out of the
box.

Sylvain

2014-05-09 16:37 GMT+02:00 Peter Soetens <peter [..] ...>:

> Hi all,
>
> I've finished migrating the gitorious.org repositories to github and
> you all should start pointing your remotes to the github equivalent in
> the next weeks.
>
> If you're using autoproj, you'll have to use
>
> autoproj switch-config git https://github.com/orocos-toolchain/build.git
>
> but autoproj has not been updated yet to contain an autoproj/github.rb
> module... Since rock is in the process of migrating as well, I expect
> this will be fixed in the near term.
>
> Instructions if you've checked out manually (without autoproj):
>
> Update one repository (with push access):
> cd log4cpp
> git remote set-url origin git [..] ...:/orocos-toolchain/log4cpp.git
>
> or without push access:
>
> git remote set-url origin https://github.com/orocos-toolchain/log4cpp.git
>
> Update a bunch of repositories if you have push access:
>
> cd orocos_toolchain
> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
> $i); git remote set-url origin
> git [..] ...:orocos-toolchain/$(basename $(dirname $i)).git; cd -;
> done
>
> If you don't have commit access:
>
> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
> $i); git remote set-url origin
> https://github.com/orocos-toolchain/$(basename $(dirname $i)).git; cd
> -; done
>
> As of now, we're taking github pull requests and issues. There is no
> automatic synchronisation going on from gitorious to github or the
> other way around.
>
> Peter
> --
> Orocos-Dev mailing list
> Orocos-Dev [..] ...
> http://lists.mech.kuleuven.be/mailman/listinfo/orocos-dev
>

Gitorious repositories/project pages will be moved to Github

OK ... found the mistake

The gitorious helper is actually used for github as well. Badly named, but
works nonetheless.

I've update the package set and build conf on master to work with github

Sylvain

2014-05-16 16:05 GMT+02:00 Sylvain Joyeux <sylvain [dot] joyeux [..] ...>:

> Hey.
>
> As far as I can see, you found out how to set up github in autoproj, or ?
> At least, with the changes you made to init.rb it should work out of the
> box.
>
> Sylvain
>
>
> 2014-05-09 16:37 GMT+02:00 Peter Soetens <peter [..] ...>:
>
> Hi all,
>>
>> I've finished migrating the gitorious.org repositories to github and
>> you all should start pointing your remotes to the github equivalent in
>> the next weeks.
>>
>> If you're using autoproj, you'll have to use
>>
>> autoproj switch-config git https://github.com/orocos-toolchain/build.git
>>
>> but autoproj has not been updated yet to contain an autoproj/github.rb
>> module... Since rock is in the process of migrating as well, I expect
>> this will be fixed in the near term.
>>
>> Instructions if you've checked out manually (without autoproj):
>>
>> Update one repository (with push access):
>> cd log4cpp
>> git remote set-url origin git [..] ...:/orocos-toolchain/log4cpp.git
>>
>> or without push access:
>>
>> git remote set-url origin https://github.com/orocos-toolchain/log4cpp.git
>>
>> Update a bunch of repositories if you have push access:
>>
>> cd orocos_toolchain
>> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
>> $i); git remote set-url origin
>> git [..] ...:orocos-toolchain/$(basename $(dirname $i)).git; cd -;
>> done
>>
>> If you don't have commit access:
>>
>> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
>> $i); git remote set-url origin
>> https://github.com/orocos-toolchain/$(basename $(dirname $i)).git; cd
>> -; done
>>
>> As of now, we're taking github pull requests and issues. There is no
>> automatic synchronisation going on from gitorious to github or the
>> other way around.
>>
>> Peter
>> --
>> Orocos-Dev mailing list
>> Orocos-Dev [..] ...
>> http://lists.mech.kuleuven.be/mailman/listinfo/orocos-dev
>>
>
>

Gitorious repositories/project pages will be moved to Github

OK ... found the mistake

The gitorious helper is actually used for github as well. Badly named, but
works nonetheless.

I've update the package set and build conf on master to work with github

Sylvain

2014-05-16 16:05 GMT+02:00 Sylvain Joyeux <sylvain [dot] joyeux [..] ...>:

> Hey.
>
> As far as I can see, you found out how to set up github in autoproj, or ?
> At least, with the changes you made to init.rb it should work out of the
> box.
>
> Sylvain
>
>
> 2014-05-09 16:37 GMT+02:00 Peter Soetens <peter [..] ...>:
>
> Hi all,
>>
>> I've finished migrating the gitorious.org repositories to github and
>> you all should start pointing your remotes to the github equivalent in
>> the next weeks.
>>
>> If you're using autoproj, you'll have to use
>>
>> autoproj switch-config git https://github.com/orocos-toolchain/build.git
>>
>> but autoproj has not been updated yet to contain an autoproj/github.rb
>> module... Since rock is in the process of migrating as well, I expect
>> this will be fixed in the near term.
>>
>> Instructions if you've checked out manually (without autoproj):
>>
>> Update one repository (with push access):
>> cd log4cpp
>> git remote set-url origin git [..] ...:/orocos-toolchain/log4cpp.git
>>
>> or without push access:
>>
>> git remote set-url origin https://github.com/orocos-toolchain/log4cpp.git
>>
>> Update a bunch of repositories if you have push access:
>>
>> cd orocos_toolchain
>> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
>> $i); git remote set-url origin
>> git [..] ...:orocos-toolchain/$(basename $(dirname $i)).git; cd -;
>> done
>>
>> If you don't have commit access:
>>
>> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
>> $i); git remote set-url origin
>> https://github.com/orocos-toolchain/$(basename $(dirname $i)).git; cd
>> -; done
>>
>> As of now, we're taking github pull requests and issues. There is no
>> automatic synchronisation going on from gitorious to github or the
>> other way around.
>>
>> Peter
>> --
>> Orocos-Dev mailing list
>> Orocos-Dev [..] ...
>> http://lists.mech.kuleuven.be/mailman/listinfo/orocos-dev
>>
>
>

Gitorious repositories/project pages will be moved to Github

On Fri, May 16, 2014 at 5:02 PM, Sylvain Joyeux <sylvain [dot] joyeux [..] ...> wrote:
> OK ... found the mistake
>
> The gitorious helper is actually used for github as well. Badly named, but
> works nonetheless.

ok, didn't realize this because both do use a different protocol to
access the repositories (ssh vs git vs https)

>
> I've update the package set and build conf on master to work with github

Thanks, I'll check it out.

Peter

>
> Sylvain
>
>
> 2014-05-16 16:05 GMT+02:00 Sylvain Joyeux <sylvain [dot] joyeux [..] ...>:
>
>> Hey.
>>
>> As far as I can see, you found out how to set up github in autoproj, or ?
>> At least, with the changes you made to init.rb it should work out of the
>> box.
>>
>> Sylvain
>>
>>
>> 2014-05-09 16:37 GMT+02:00 Peter Soetens <peter [..] ...>:
>>
>>> Hi all,
>>>
>>> I've finished migrating the gitorious.org repositories to github and
>>> you all should start pointing your remotes to the github equivalent in
>>> the next weeks.
>>>
>>> If you're using autoproj, you'll have to use
>>>
>>> autoproj switch-config git https://github.com/orocos-toolchain/build.git
>>>
>>> but autoproj has not been updated yet to contain an autoproj/github.rb
>>> module... Since rock is in the process of migrating as well, I expect
>>> this will be fixed in the near term.
>>>
>>> Instructions if you've checked out manually (without autoproj):
>>>
>>> Update one repository (with push access):
>>> cd log4cpp
>>> git remote set-url origin git [..] ...:/orocos-toolchain/log4cpp.git
>>>
>>> or without push access:
>>>
>>> git remote set-url origin https://github.com/orocos-toolchain/log4cpp.git
>>>
>>> Update a bunch of repositories if you have push access:
>>>
>>> cd orocos_toolchain
>>> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
>>> $i); git remote set-url origin
>>> git [..] ...:orocos-toolchain/$(basename $(dirname $i)).git; cd -;
>>> done
>>>
>>> If you don't have commit access:
>>>
>>> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
>>> $i); git remote set-url origin
>>> https://github.com/orocos-toolchain/$(basename $(dirname $i)).git; cd
>>> -; done
>>>
>>> As of now, we're taking github pull requests and issues. There is no
>>> automatic synchronisation going on from gitorious to github or the
>>> other way around.
>>>
>>> Peter
>>> --
>>> Orocos-Dev mailing list
>>> Orocos-Dev [..] ...
>>> http://lists.mech.kuleuven.be/mailman/listinfo/orocos-dev
>>
>>
>

Gitorious repositories/project pages will be moved to Github

On Fri, May 16, 2014 at 5:02 PM, Sylvain Joyeux <sylvain [dot] joyeux [..] ...> wrote:
> OK ... found the mistake
>
> The gitorious helper is actually used for github as well. Badly named, but
> works nonetheless.

ok, didn't realize this because both do use a different protocol to
access the repositories (ssh vs git vs https)

>
> I've update the package set and build conf on master to work with github

Thanks, I'll check it out.

Peter

>
> Sylvain
>
>
> 2014-05-16 16:05 GMT+02:00 Sylvain Joyeux <sylvain [dot] joyeux [..] ...>:
>
>> Hey.
>>
>> As far as I can see, you found out how to set up github in autoproj, or ?
>> At least, with the changes you made to init.rb it should work out of the
>> box.
>>
>> Sylvain
>>
>>
>> 2014-05-09 16:37 GMT+02:00 Peter Soetens <peter [..] ...>:
>>
>>> Hi all,
>>>
>>> I've finished migrating the gitorious.org repositories to github and
>>> you all should start pointing your remotes to the github equivalent in
>>> the next weeks.
>>>
>>> If you're using autoproj, you'll have to use
>>>
>>> autoproj switch-config git https://github.com/orocos-toolchain/build.git
>>>
>>> but autoproj has not been updated yet to contain an autoproj/github.rb
>>> module... Since rock is in the process of migrating as well, I expect
>>> this will be fixed in the near term.
>>>
>>> Instructions if you've checked out manually (without autoproj):
>>>
>>> Update one repository (with push access):
>>> cd log4cpp
>>> git remote set-url origin git [..] ...:/orocos-toolchain/log4cpp.git
>>>
>>> or without push access:
>>>
>>> git remote set-url origin https://github.com/orocos-toolchain/log4cpp.git
>>>
>>> Update a bunch of repositories if you have push access:
>>>
>>> cd orocos_toolchain
>>> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
>>> $i); git remote set-url origin
>>> git [..] ...:orocos-toolchain/$(basename $(dirname $i)).git; cd -;
>>> done
>>>
>>> If you don't have commit access:
>>>
>>> for i in $(find . -mindepth 2 -type d -name .git); do cd $(dirname
>>> $i); git remote set-url origin
>>> https://github.com/orocos-toolchain/$(basename $(dirname $i)).git; cd
>>> -; done
>>>
>>> As of now, we're taking github pull requests and issues. There is no
>>> automatic synchronisation going on from gitorious to github or the
>>> other way around.
>>>
>>> Peter
>>> --
>>> Orocos-Dev mailing list
>>> Orocos-Dev [..] ...
>>> http://lists.mech.kuleuven.be/mailman/listinfo/orocos-dev
>>
>>
>