Displaying 1 result from an estimated 1 matches for "get_commit_messag".
Did you mean:
get_commit_message
2019 Mar 02
2
Getting the commit message from Phabricator
...url instead of arc)
You need to provide your own conduit api token in place of
<replace_with_phabricator_api_token>
You can get one of these from you Profile->Setting->Conduit API Tokens in
the top right hand corner of Phabricator https://reviews.llvm.org
----------------------------
get_commit_message.sh
----------------------------
echo '{ "revision_id": '${1:1}' }' | arc call-conduit --conduit-uri
https://reviews.llvm.org/ --conduit-token
<replace_with_phabricator_api_token> differential.getcommitmessage | jq
".response" | sed 's/^.\(.*\).$/\1/...