Gitorious repositories/project pages will be moved to Github
Peter Soetens <[email protected]> Fri, 9 May 2014 16:37:15 +0200
| Newsgroups | gmane.science.robotics.orocos.devel |
|---|---|
| Message-ID | <CAMYDobXfZtcB7+qTzJrcetiXRzRtj5Wzcbk3Mo0Y5G6bQoeUkw@mail.gmail.com> |
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 [email protected]:/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 [email protected]: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 [email protected] http://lists.mech.kuleuven.be/mailman/listinfo/orocos-dev