Merge commit 'refs/pull/61149/head' of github.com:Microsoft/vscode into pr/61149

This commit is contained in:
Joao Moreno
2019-05-27 15:20:08 +02:00
4 changed files with 39 additions and 5 deletions

View File

@@ -26,6 +26,11 @@ export interface Ref {
readonly remote?: string;
}
export interface TrackingShip {
readonly local: string;
readonly upstream: string;
}
export interface UpstreamRef {
readonly remote: string;
readonly name: string;
@@ -235,4 +240,4 @@ export const enum GitErrorCodes {
CantRebaseMultipleBranches = 'CantRebaseMultipleBranches',
PatchDoesNotApply = 'PatchDoesNotApply',
NoPathFound = 'NoPathFound'
}
}