Re: Github repo renamed to scikit-image
On Wed, Oct 3, 2012 at 7:40 PM, Tony Yu <tsyu80@gmail.com> wrote:
I noticed that the github repo was renamed, as discussed in a previous thread. For those who didn't follow that thread, the second "s" in "scikits" was removed.
Thanks for the update, Tony. Perhaps doing all this renaming while travelling wasn't the best of ideas, but it should now all be done. 1. Domains are registered and correctly configured (scikit-image.org/xyz -> skimage.org/xyz) 2. Web page is updated 3. Ohloh profile is renamed 4. Binary download paths updated, also Christoph's Windows binaries I have not yet updated the Debian package description. Should we do a 0.7.1 release before we push out the latest package?
Right now if you go to https://github.com/scikits-image/scikits-image, you get a 404 error. Unfortunately, it doesn't seem like it's possible to have that repo redirect to the newly renamed repo.
The only way to fix that is to create a new organization, I'm afraid.
Rename main repo ================
To change your link to the main github repo (which I've named "upstream" below):
git remote rm upstream git remote add upstream https://github.com/scikit-image/scikit-image.git
*or* (SSH read/write):
git remote add upstream git@github.com:scikit-image/scikit-image.git
I always use this one (even for read-only repos), which works as long as you have your SSH keys set up with GitHub. Stéfan
participants (1)
-
Stéfan van der Walt