소스 검색

Changes pull to fetch if no tracking branch

main
Eric Amodio 5 년 전
부모
커밋
d11cb57f05
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -1
      src/git/models/repository.ts

+ 7
- 1
src/git/models/repository.ts 파일 보기

@ -340,7 +340,13 @@ export class Repository implements Disposable {
}
private async pullCore() {
void (await commands.executeCommand('git.pull', this.path));
const tracking = await this.hasTrackingBranch();
if (tracking) {
void (await commands.executeCommand('git.pull', this.path));
}
else if (configuration.getAny<boolean>('git.fetchOnPull', Uri.file(this.path))) {
void (await Container.git.fetch(this.path));
}
this.fireChange(RepositoryChange.Repository);
}

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