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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.