push
plugin.git.push(): Promise<GitPushResponse>
Pushes local repository changes to the remote repository at the given path.
Parameters
No parameters.
Returns
Promise<GitPushResponse> — A promise that resolves with the response from the push event.
Example
import plugin from '@codebolt/plugin-sdk';
const result = await plugin.git.push();
console.log(result);