Hello all,

In the June 1st Community Newsletter, I announced that we're going to migrate 
non-supported projects from github.com/marklogic to 
github.com/marklogic-community. By doing so, we'll provide more clarity on what 
projects are supported by MarkLogic (the company) and which are Community 
driven.

I'm writing to let you know that I've begun the migration process and have 
moved more than 40 projects from their original homes to the 
marklogic-community account.

When a project moves, GitHub provides redirects; as such I'm anticipating very 
little impact. When you point your browser to the old home, it will end up at 
the new one. If you notice a problem with a project, please file an issue on 
that project's GitHub page (and feel free to send me an email if you want to 
ensure that someone sees it; shouldn't be necessary with actively maintained 
projects). That said, you'll still want to update your links.

If you have cloned a repository, git will record the "remotes" that your clone 
is attached to. You can see these with the command "git remote -v":


$ git remote -v

origin g...@github.com:dmcassel/roxy.git (fetch)

origin g...@github.com:dmcassel/roxy.git (push)

upstream g...@github.com:marklogic/roxy.git (fetch)

upstream g...@github.com:marklogic/roxy.git (push)

If you don't have any work in progress, and you're not real comfortable with 
git, you might find it easiest to simply clone the repo again from its new home 
(in this case, "git clone https://github.com/marklogic-community/roxy";).

You can also change the remote pointers in place. Here I've got my clone of my 
fork of Roxy ("origin") and its got a pointer to the original repo 
("upstream"). I can still pull from upstream, but just to be a little cleaner, 
I'd like to point to the right place. Here's how I fix that:


$ git remote set-url upstream https://github.com/marklogic-community/roxy

If you'd like to read more about what happens when a repository gets 
transferred, here's some information from GitHub: 
https://help.github.com/articles/about-repository-transfers/#whats-transferred-with-a-repository

Dave.

--
Dave Cassel, @dmcassel<https://twitter.com/dmcassel>
Technical Community Manager
MarkLogic Corporation<http://www.marklogic.com/>
http://developer.marklogic.com/
_______________________________________________
General mailing list
General@developer.marklogic.com
Manage your subscription at: 
http://developer.marklogic.com/mailman/listinfo/general

Reply via email to