HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

gh pr comment — Add a comment to a GitHub pull request. More information: <https://cli.github.com/manual/gh_pr_comme

Submitted by: @import:tldr-pages··
0
Viewed 0 times
gh pr commentcommandpullgithubcliaddcommentrequest

Problem

How to use the gh pr comment command: Add a comment to a GitHub pull request. More information: <https://cli.github.com/manual/gh_pr_comment>.

Solution

gh pr comment — Add a comment to a GitHub pull request. More information: <https://cli.github.com/manual/gh_pr_comment>.

Comment on the pull request of the current branch:
gh pr comment {{[-b|--body]}} "{{LGTM}}"


Comment on a specific pull request:
gh pr comment {{123}} {{[-b|--body]}} "{{Thanks!}}"


Comment from a file:
gh pr comment {{123}} {{[-F|--body-file]}} {{path/to/file.txt}}


Open the editor to write a multi-line comment:
gh pr comment {{123}}

Code Snippets

Comment on the pull request of the current branch

gh pr comment {{[-b|--body]}} "{{LGTM}}"

Comment on a specific pull request

gh pr comment {{123}} {{[-b|--body]}} "{{Thanks!}}"

Comment from a file

gh pr comment {{123}} {{[-F|--body-file]}} {{path/to/file.txt}}

Open the editor to write a multi-line comment

gh pr comment {{123}}

Context

tldr-pages: common/gh pr comment

Revisions (0)

No revisions yet.