glu-cli
Version:
Git stacked branch management with GitHub integration
15 lines • 408 B
TypeScript
/**
* Extracts pull request/merge request URLs from git push output
*/
export declare function extractPullRequestUrl(gitOutput: string): string | null;
/**
* Test data for common git hosting providers
*/
export declare const SAMPLE_GIT_OUTPUTS: {
github: string;
gitlab: string;
bitbucket: string;
azureDevOps: string;
noUrl: string;
};
//# sourceMappingURL=git-url-extractor.d.ts.map