Git tag doesn't work

I try to set contret version of the library in platformio.ini:

lib_deps = git@bitbucket.org:username/somelib.git@v1.2.0

So, I’ve got an error:

conq: repository does not exist.
fatal: Could not read from remote repository.

But when I removed tag v1.2.0 from the lib path, everything was fine.

In example of lib_deps (Redirecting...) says that it’s possible way:

lib_deps =
13
PubSubClient
Json@~5.6,!=5.4
https://github.com/gioblu/PJON.git@v2.0
https://github.com/me-no-dev/ESPAsyncTCP.git```




So where my mistake?

I figured out that problem cause in the ‘dog’ (@) symbol instead of ‘sharp’ (#) in the git lib path before tag name.

lib_deps = git@bitbucket.org:username/somelib.git#v1.2.0 - works fine.

See docs