GH-SEARCH-COMMITS(1) GitHub CLI manual GH-SEARCH-COMMITS(1) NAME gh-search-commits - Search for commits SYNOPSIS gh search commits [] [flags] DESCRIPTION Search for commits on GitHub. The command supports constructing queries using the GitHub search syntax, using the parameter and qualifier flags, or a combination of the two. GitHub search syntax is documented at: OPTIONS --author Filter by author --author-date Filter based on authored date --author-email Filter on author email --author-name Filter on author name --committer Filter by committer --committer-date Filter based on committed date --committer-email Filter on committer email --committer-name Filter on committer name --hash Filter by commit hash -q, --jq Filter JSON output using a jq expression --json Output JSON with the specified fields -L, --limit (default 30) Maximum number of commits to fetch --merge Filter on merge commits --order (default "desc") Order of commits returned, ignored unless '--sort' flag is specified: {asc|desc} --owner Filter on repository owner --parent Filter by parent hash -R, --repo Filter on repository --sort (default "best-match") Sort fetched commits: {author-date|committer-date} -t, --template Format JSON output using a Go template; see "gh help formatting" --tree Filter by tree hash --visibility Filter based on repository visibility: {public|private|internal} -w, --web Open the search query in the web browser JSON FIELDS author, commit, committer, id, parents, repository, sha, url EXAMPLE # search commits matching set of keywords "readme" and "typo" $ gh search commits readme typo # search commits matching phrase "bug fix" $ gh search commits "bug fix" # search commits committed by user "monalisa" $ gh search commits --committer=monalisa # search commits authored by users with name "Jane Doe" $ gh search commits --author-name="Jane Doe" # search commits matching hash "8dd03144ffdc6c0d486d6b705f9c7fba871ee7c3" $ gh search commits --hash=8dd03144ffdc6c0d486d6b705f9c7fba871ee7c3 # search commits authored before February 1st, 2022 $ gh search commits --author-date="<2022-02-01" SEE ALSO gh-search(1) May 2024 GH-SEARCH-COMMITS(1)