소스 검색

Fix commits incorrectly being merge type

main
Ramin Tadayon 2 년 전
부모
커밋
1ae096f215
No known key found for this signature in database GPG 키 ID: 5B90E918AEBCE7A7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/env/node/git/localGitProvider.ts

+ 1
- 1
src/env/node/git/localGitProvider.ts 파일 보기

@ -1828,7 +1828,7 @@ export class LocalGitProvider implements GitProvider, Disposable {
// TODO: review logic for stash, wip, etc
type: isStashCommit
? GitGraphRowType.Stash
: commit.parents.length > 1
: parents.length > 1
? GitGraphRowType.MergeCommit
: GitGraphRowType.Commit,
heads: refHeads,

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