Browse Source

Fixes issue with branch name truncations (rebase)

main
Eric Amodio 7 years ago
parent
commit
04d2c00ebf
1 changed files with 0 additions and 5 deletions
  1. +0
    -5
      src/git/models/branch.ts

+ 0
- 5
src/git/models/branch.ts 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;

Loading…
Cancel
Save