The Conflict Radar Panel is a dedicated sidebar view that shows all detected conflicts across your workspace. At a glance, see which files have conflicts, their severity, and who made the conflicting changes.
Screenshot
Full Conflict Radar Panel showing multiple files with conflicts organized by severity
The Conflict Radar organizes information hierarchically:
š Conflict Radar
āāā š src/
ā āāā š“ auth/login.ts (3 conflicts)
ā ā āāā Line 45-52 ā Sarah Chen (2h ago)
ā ā āāā Line 78 ā Marcus Johnson (yesterday)
ā ā āāā Line 112-115 ā Sarah Chen (2h ago)
ā āāā š” api/users.ts (1 warning)
ā āāā Line 23 ā Alex Rivera (4h ago)
āāā š tests/
āāā š” auth.test.ts (2 warnings)Screenshot
Expanded tree view showing files and conflict details with author information
Each file shows a badge indicating conflict severity:
Red
Will fail to merge
Yellow
Same file, different lines
Clear
No conflicts detected
Right-click any item for quick actions:
Screenshot
Context menu showing Open File, View Diff, Dismiss, and Cherry Pick actions
Files with conflicts also show badges in VS Code's file explorer:
Screenshot
VS Code file explorer showing conflict badges on files
Use the panel header controls to filter what you see:
Screenshot
Panel header with filter and sort controls
The panel updates automatically when:
fetchOnSave is enabled)GitSpectra: Check NowManual refresh available via the refresh button in the panel header.
{
"gitspectra.panel.showWarnings": true, // Include soft warnings
"gitspectra.panel.groupByFolder": true, // Group files by directory
"gitspectra.panel.autoExpand": false // Auto-expand items on refresh
}