SCM - add incoming/outgoing nodes to graph (#274059)

This commit is contained in:
Ladislau Szomoru
2025-10-30 16:04:24 +00:00
committed by GitHub
parent 08ba161ba5
commit 16f58dd3ac
12 changed files with 239 additions and 84 deletions

View File

@@ -3169,22 +3169,6 @@ export class CommandCenter {
}
}
@command('git.graph.openIncomingChanges', { repository: true })
async openIncomingChanges(repository: Repository): Promise<void> {
await this._openChangesBetweenRefs(
repository,
repository.historyProvider.currentHistoryItemRef,
repository.historyProvider.currentHistoryItemRemoteRef);
}
@command('git.graph.openOutgoingChanges', { repository: true })
async openOutgoingChanges(repository: Repository): Promise<void> {
await this._openChangesBetweenRefs(
repository,
repository.historyProvider.currentHistoryItemRemoteRef,
repository.historyProvider.currentHistoryItemRef);
}
@command('git.graph.compareWithMergeBase', { repository: true })
async compareWithMergeBase(repository: Repository): Promise<void> {
await this._openChangesBetweenRefs(