소스 검색

Fixes status parsing issue with working changes

main
Eric Amodio 2 년 전
부모
커밋
379d83ea48
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      src/git/models/status.ts

+ 3
- 2
src/git/models/status.ts 파일 보기

@ -383,10 +383,11 @@ export class GitStatusFile implements GitFile {
switch (y) {
case 'A':
this.workingTreeStatus = GitFileWorkingTreeStatus.Modified;
case '?':
this.workingTreeStatus = GitFileWorkingTreeStatus.Added;
break;
case 'D':
this.workingTreeStatus = GitFileWorkingTreeStatus.Modified;
this.workingTreeStatus = GitFileWorkingTreeStatus.Deleted;
break;
case 'M':
this.workingTreeStatus = GitFileWorkingTreeStatus.Modified;

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