Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

squid-git-ops

rajeevnaikte20MIT1.0.2TypeScript support: included

Git operations on various git vendors

git operations

readme

git-ops

Git operations on various git vendors.

Merge branch

Merge a branch into another.

  • Using GitHub API `javascript 1.8 import { GitOpsFactory } from './GitOperations';

    const gitOps = GitOpsFactory.getGitHubImpl('1234', 'rajeevnaikte/git-ops');

    gitOps.merge('master', 'feature1'); gitOps.merge('master', 'feature2'); `