Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions extension/src/cli/git/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const gitPath = {
DOT_GIT_INDEX: 'index',
GIT_LOGS_REFS: join('logs', 'ref'),
GIT_REFS: 'refs',
GIT_TAGS_REFS: join('refs', 'tags'),
HEADS_GIT_REFS: 'heads'
} as const

Expand Down
3 changes: 2 additions & 1 deletion extension/src/experiments/data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ export class ExperimentsData extends BaseData<ExperimentsOutput> {
gitPath.DOT_GIT_HEAD,
EXPERIMENTS_GIT_REFS,
EXPERIMENTS_GIT_LOGS_REFS,
gitPath.HEADS_GIT_REFS
gitPath.HEADS_GIT_REFS,
gitPath.GIT_TAGS_REFS
]

return createFileSystemWatcher(
Expand Down