ソースを参照

Fix commits incorrectly being merge type

main
Ramin Tadayon 2年前
コミット
1ae096f215
この署名に対応する既知のキーがデータベースに存在しません 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,

読み込み中…
キャンセル
保存