Create A Branch

Creates a new branch in the specified repository.The payload of the POST should consist of a JSON document thatcontains the name of the tag and the target hash.```curl https://api.bitbucket.org/2.0/repositories/seanfarley/hg/refs/branches \-s -u seanfarley -X POST -H "Content-Type: application/json" \-d '{ "name" : "smf/create-feature", "target" : { "hash" : "default", }}'```This call requires authentication. Priv...