Last active
November 3, 2025 09:21
-
-
Save steffen-wirth/a11b8302fc8c0f493f706ccc157e646f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # on local repo path | |
| # rename origin | |
| git remote rename origin bitbucket; | |
| # add new github origin | |
| git remote add origin git@github.com:workspace/repo.git; | |
| # push to new github repo | |
| git push -u origin main; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment