Skip to main content

signaloid-cli repos get

Get details about a specific repository.

Synopsis

signaloid-cli repos get --repo-id <id>

Options

OptionRequiredDescription
--repo-id <id>YesRepository ID
--format <type>NoOutput format: json|table (default: table)

Description

Retrieves detailed information about a specific connected repository, including its configuration settings such as remote URL, branch, commit hash, build directory, default arguments, and assigned core.

Examples

Get repository details:

signaloid-cli repos get --repo-id rep_abc123

Output:

+---------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Remote U R L | https://github.com/signaloid/Signaloid-Demo-Sensors-BME680ConversionRoutines |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Updated At | 1761578471 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Object | Repository |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Branch | main |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Commit | HEAD |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Created At | 1760970897 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Build Directory | src |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Owner | usr_e6789061ad6641899387b6458cc9a2e2 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Repository I D | rep_6ba5f900c3284814b8cef94d079d0ab8 |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Data Sources | [] |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Arguments | |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Trace Variables | [] |
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Core | cor_271d544c73a8544d9026252652342972 |
+---------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

Extract specific field:

signaloid-cli repos get --repo-id rep_abc123 --format json | jq -r '.RemoteURL'

Check if repository was updated recently:

signaloid-cli repos get --repo-id rep_abc123 --format json | jq -r '.UpdatedAt'

See Also