Is it possible to 'fork" a repo upto a specific commit?

bitbucket, git

Solution

Fork and clone the repo, then use the git command line to reset the branch:

git reset --hard <old-commit>
git push -f

Problem

Is it possible to create a fork in butbucket from a specific commit in a repo? I don't want to clone the repo to my machine and then push back. Is there a way to do it from the web interface?

Original source