checkpoint
client.shadowGit.checkpoint(data?: ShadowGitCheckpointRequest): Promise<ShadowGitCheckpoint>
Create a shadow git checkpoint
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
data | ShadowGitCheckpointRequest | No |
Returns
Promise<ShadowGitCheckpoint>
Example
import { CodeBoltClient } from '@codebolt/clientsdk';
const client = new CodeBoltClient();
const result = await client.shadowGit.checkpoint();
console.log(result);