We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5770507 commit 94bf9daCopy full SHA for 94bf9da
extension/src/cli/git/constants.ts
@@ -6,6 +6,7 @@ export const gitPath = {
6
DOT_GIT_INDEX: 'index',
7
GIT_LOGS_REFS: join('logs', 'ref'),
8
GIT_REFS: 'refs',
9
+ GIT_TAGS_REFS: join('refs', 'tags'),
10
HEADS_GIT_REFS: 'heads'
11
} as const
12
extension/src/experiments/data/index.ts
@@ -234,7 +234,8 @@ export class ExperimentsData extends BaseData<ExperimentsOutput> {
234
gitPath.DOT_GIT_HEAD,
235
EXPERIMENTS_GIT_REFS,
236
EXPERIMENTS_GIT_LOGS_REFS,
237
- gitPath.HEADS_GIT_REFS
+ gitPath.HEADS_GIT_REFS,
238
+ gitPath.GIT_TAGS_REFS
239
]
240
241
return createFileSystemWatcher(
0 commit comments