Fixes issue with branch name truncations (rebase)

This commit is contained in:
Eric Amodio
2017-09-08 17:03:21 -04:00
parent ece34dba32
commit 04d2c00ebf

View File

@@ -13,11 +13,6 @@ export class GitBranch {
this.remote = true;
}
const index = branch.indexOf(' ');
if (index !== -1) {
branch = branch.substring(0, index);
}
this.current = current;
this.name = branch;
this.tracking = tracking;