is it possible to port from Bitbucket to Github with all details or date creation etc as is in the bitbucket repository?
I believe the creation date won’t carry over. However, when you change remotes and push to the new repository, it will retain the entire commit history, including the first commit.
For that, you need to properly clone, change the remote, and push.
git clone --mirror <bitbucket-repo-url>
cd <repo-name>
git remote set-url origin <github-repo-url>
git push --mirror
If the repository creation date is the "date creation" you are talking about, it is related to the hosting provider. So that cannot be modified.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.