More than six years after I left GitHub with most of my development projects I will finally return. Almost all open source projects and a lot of teams I work with are on GitHub, the collaboration will be much easier on the same platform.

In the next weeks I will move projects to a new repository and update the project pages.

Just in case someone is looking for a receipe to move a git repo to a new platform:

  1. Create the new repository
  2. Clone from the old platform, enter folder:
    git clone https://USER@bitbucket.org/USER/PROJECT.git
    cd PROJECT
  3. Add new upstream:
    git remote add upstream https://github.com:USER/PROJECT.git
  4. Push:
    git push upstream master
    git push --tags upstream