Fork A Repository
Creates a new fork of the specified repository.#### Forking a repositoryTo create a fork, specify the workspace explicitly as part of therequest body:```$ curl -X POST -u jdoe https://api.bitbucket.org/2.0/repositories/atlassian/bbql/forks \ -H 'Content-Type: application/json' -d '{ "name": "bbql_fork", "workspace": { "slug": "atlassian" }}'```To fork a repository into the same workspace, also specify a new `na...