Fulfill local branch checking when checkout to an remote branch

This commit is contained in:
laphets
2018-10-17 21:04:31 +08:00
parent 4f09f1aa4a
commit d8aaf716c4
4 changed files with 41 additions and 4 deletions

View File

@@ -26,6 +26,11 @@ export interface Ref {
readonly remote?: string;
}
export interface Trackingship {
readonly local: string;
readonly upstarem: string;
}
export interface UpstreamRef {
readonly remote: string;
readonly name: string;