Create A Tag
Creates a new tag 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/jdoe/myrepo/refs/tags \-s -u jdoe -X POST -H "Content-Type: application/json" \-d '{ "name" : "new-tag-name", "target" : { "hash" : "a1b2c3d4e5f6", }}'```This endpoint does support using short hash prefixes fo...