@daisha
To sync repositories from Bitbucket to GitHub, you can use the following steps:
1
|
git clone [email protected]:<username>/<repository-name>.git |
1
|
cd <repository-name> |
1
|
git remote add github [email protected]:<github-username>/<repository-name>.git |
1
|
git push github master |
By following these steps, you can sync repositories from Bitbucket to GitHub.