View Git Graph command opens the main Git Graph visualization panel, allowing you to explore your repository’s commit history as an interactive graph.
Opening Git Graph
There are multiple ways to open Git Graph:Command Palette
- Press
Ctrl+Shift+P(orCmd+Shift+Pon macOS) to open the Command Palette - Type “Git Graph: View Git Graph (git log)”
- Press Enter
Status Bar
If enabled in settings, click the Git Graph icon in the Status Bar at the bottom of VS Code.The Status Bar item can be toggled using the
neo-git-graph.showStatusBarItem setting.Command Details
neo-git-graph.view(neo) Git Graph
View Git Graph (git log)
What It Does
When executed, this command:- Creates or shows the Git Graph view panel
- Loads the repository’s commit history
- Displays commits as an interactive graph visualization
- Allows you to perform Git actions directly from the interface
The number of commits initially loaded can be configured using the
neo-git-graph.initialLoadCommits setting (default: 300).Related Settings
neo-git-graph.showStatusBarItem- Show/hide the Status Bar itemneo-git-graph.initialLoadCommits- Number of commits to load initiallyneo-git-graph.showCurrentBranchByDefault- Show only current branch or all branchesneo-git-graph.showUncommittedChanges- Display uncommitted changes in the graph