mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-27 09:35:42 -05:00
Fixes issue with branch name truncations (rebase)
This commit is contained in:
@@ -13,11 +13,6 @@ export class GitBranch {
|
|||||||
this.remote = true;
|
this.remote = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
const index = branch.indexOf(' ');
|
|
||||||
if (index !== -1) {
|
|
||||||
branch = branch.substring(0, index);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.current = current;
|
this.current = current;
|
||||||
this.name = branch;
|
this.name = branch;
|
||||||
this.tracking = tracking;
|
this.tracking = tracking;
|
||||||
|
|||||||
Reference in New Issue
Block a user