SHOW GIT BRANCHES¶
Lists the Git repository branches in the specified repository.
Syntax¶
SHOW GIT BRANCHES [ LIKE '<pattern>' ] IN [ GIT REPOSITORY ] <repository_name>
Parameters¶
LIKE 'pattern'
Optionally filters the command output by object name. The filter uses case-insensitive pattern matching, with support for SQL wildcard characters (
%
and_
).For example, the following patterns return the same results:
... LIKE '%testing%' ...
... LIKE '%TESTING%' ...
. Default: No value (no filtering is applied to the output).
IN [ GIT REPOSITORY ] repository_name
Specifies the Git repository stage containing the branches to show.
Access control requirements¶
A role used to execute this SQL command must have the following privileges at a minimum:
Privilege |
Object |
Notes |
---|---|---|
READ |
Git repository |
Repository containing the branches to show |
Note that operating on any object in a schema also requires the USAGE privilege on the parent database and schema.
For instructions on creating a custom role with a specified set of privileges, see Creating custom roles.
For general information about roles and privilege grants for performing SQL actions on securable objects, see Overview of Access Control.
Examples¶
The following example lists branches in the Git repository snowflake_extensions
.
SHOW GIT BRANCHES IN snowflake_extensions;
The preceding command generates output such as the following:
--------------------------------------------------------------------------------
| name | path | checkouts | commit_hash |
--------------------------------------------------------------------------------
| main | /branches/main | | 0f81b1487dfc822df9f73ac6b3096b9ea9e42d69 |
--------------------------------------------------------------------------------