This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# go to your repository | |
cd my_project | |
# check your existing remote | |
git remote -v | |
# origin [email protected]:my_project.git (fetch) | |
# origin [email protected]:my_project.git (push) | |
# Add a new remote, a github.com private repository for example | |
# the --mirror flag is what's different from a simple new remote |