Просмотр исходного кода

Fixes issue with branch name truncations (rebase)

main
Eric Amodio 7 лет назад
Родитель
Сommit
04d2c00ebf
1 измененных файлов: 0 добавлений и 5 удалений
  1. +0
    -5
      src/git/models/branch.ts

+ 0
- 5
src/git/models/branch.ts Просмотреть файл

@ -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;

Загрузка…
Отмена
Сохранить