I can have a remote repository’s hash by tag v0.94.9
git ls-remote https://github.com/status-im/status-go v0.94.9
How to get the commit message for this tag?
I do not want to clone that repository, just get its commit message for that tag v0.94.9
>Solution :
Provide a solution that GitHub only (using GitHub APIs):
#!/bin/bash
url=$(curl https://api.github.com/repos/status-im/status-go/git/ref/tags/v0.94.9 | jq -r .object.url)
curl "$url" | jq -r .message