I have a gitlab Repository and I want it to update it on the bitbucket account.
Please provide me steps to follow, so that it can be helpful to me to mi
1) Create the repository in Bitbucket using the UI
2) Clone the Gitlab repository using the "--bare" option
git clone --bare GITLAB-URL
3) Add the Bitbucket remote
cd REPO-NAME
git remote add bitbucket BITBUCKET-URL
4) Push all commits, branches and tags to Bitbucket
git push --all bitbucket
git push --tags bitbucket
5) Remove the temp repository
cd ..
rm -rf REPO-NAME