소스 검색

Updates tag quick pick

main
Eric Amodio 3 년 전
부모
커밋
26ac07708c
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. +6
    -6
      src/quickpicks/gitQuickPickItems.ts

+ 6
- 6
src/quickpicks/gitQuickPickItems.ts 파일 보기

@ -387,13 +387,13 @@ export namespace TagQuickPickItem {
}
if (options.ref) {
description = description
? `${descriptionan>}${Strings.pad('$(git-commit)', 2, 2)}${GitRevision.shorten(tag.sha)}`
: `${Strings.pad('$(git-commit)', 0, 2)}${GitRevision.shorten(tag.sha)}`;
description = `${description}${Strings.pad('$(git-commit)', description ? 2 : 0, 2)}${GitRevision.shorten(
tag.sha,
)}`;
description = description
? `${description}${Strings.pad(GlyphChars.Dot, 2, 2)}${tag.formattedDate}`
: tag.formattedDate;
description = `${description ? `${description}${Strings.pad(GlyphChars.Dot, 2, 2)}` : ''}${
tag.formattedDate
}`;
}
if (options.message) {

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