소스 검색

Adds separator to commits view

main
Eric Amodio 4 년 전
부모
커밋
6fdf7a98be
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      src/views/nodes/branchNode.ts

+ 4
- 0
src/views/nodes/branchNode.ts 파일 보기

@ -163,6 +163,10 @@ export class BranchNode
}
}
if (children.length !== 0) {
children.push(new MessageNode(this.view, this, '', GlyphChars.Dash.repeat(2), ''));
}
let unpublished: GitLog | undefined;
if (this.branch.tracking && this.branch.state.ahead) {
unpublished = await Container.git.getLog(this.uri.repoPath!, {

불러오는 중...
취소
저장