Skip to content

Latest commit

 

History

History
67 lines (50 loc) · 2.61 KB

File metadata and controls

67 lines (50 loc) · 2.61 KB

Core Features

Branch Management

  • Create, checkout, delete, and rename branches
  • Publish local branches to remote with upstream tracking
  • Checkout remote branches as local tracking branches (right-click any remote branch)
  • Visual git graph showing commit history per branch
  • Ahead/behind tracking for local branches

File Operations

  • Stage and unstage files individually or all at once
  • Stage untracked files directly from the changes section
  • Discard changes to tracked files individually or all at once
  • Permanently delete untracked files with a dedicated trash icon
  • View diffs for changed files
  • Auto-refresh on file save

Remote Operations

  • Push, pull, and fetch changes
  • Fetch with automatic pruning of deleted remote branches

Commit Workflow

  • Commit staged files with custom messages
  • Commit button only appears when files are staged

User Interface

  • Clean tree view with organized sections (branches, changes, staged, tags, stash)
  • Context-aware inline buttons and menus
  • Activity bar badge showing the number of changed files
  • Tracked and untracked files visually differentiated with distinct icons and actions
  • Modal dialogs for confirmations, with stronger warnings for destructive actions
  • Syntax highlighting and VSCode theme integration

Git Graph

  • Visual git graph rendered in a webview panel
  • Commit rows with hash, message, author, and date columns
  • Graph column showing branch lanes and edges with color-coded lines
  • Commit markers: diamond for HEAD, double-ring for merge commits, filled circle for normal commits
  • Alternating row backgrounds for readability
  • Ref pills per commit showing all associated refs
  • Color-coded ref pills by kind: HEAD (amber), local branch (blue), remote (light blue), tag (orange)
  • Tag pills prefixed with 🎯 bookmark emoji
  • Merge commits styled in grey with [MERGE] prefix
  • Click any commit hash to open a detail panel showing full commit information
  • Detail panel displays commit hash, message, and unified diff with syntax highlighting
  • Diff split into per-file sections with added, removed, hunk, and context line styling
  • Summary block at the top of the diff showing files changed
  • Sidebar action buttons per commit: Create Tag, Checkout, Copy Hash, Cherry Pick
  • Copy Hash button provides instant clipboard copy with visual confirmation
  • Cherry Pick applies a selected commit onto the current branch with conflict handling
  • All colors, fonts, and spacing follow the active VS Code theme via CSS variables

Developer Features

Logging Features

  • Comprehensive logging and error reporting

Testing

  • 170+ unit and integration tests