Note: Currently, there are no plans to retire Redmine or ghe-pip2. However, we highly recommend initiating the migration of repositories from these platforms to GitHub in the near future.
This document provides a step-by-step guide for migrating your code repository to GitHub. Please follow these instructions to make the migration of code repositories to GitHub go smoothly:
Add the new repository as a remote destination for the code migration.
$ git remote set-url origin https://github.com/fermi-controls/<name of the repo>.git
$ git remote -v
origin https://github.com/fermi-controls/<name of the repo>.git (fetch)
origin https://github.com/fermi-controls/<name of the repo>.git(push)
Push the code from the source repository to the new repository. The options --all
and --tags
pushes all your branches and tags.
git push origin --all
git push --tags
Communicate with collaborators to update their local working directories:
git remote set-url origin https://github.com/fermi-controls/<name of the repo>.git