Git & Version Control Operations
// Checking Git Status
If you open a directory backed by Git, the bottom bar will display the active branch. File names in the sidebar are color-coded (green for added, yellow for modified) to reflect staging status.
// Viewing Diffs
Clicking the git status bar icon opens a split diff viewer. The viewer highlights lines added (green) and removed (red) compared to the HEAD commit.
// Commit and Push Actions
Launch the Command Palette (Ctrl + P) and type > git commit to commit modified files directly. Enter your commit message in the overlay prompt and press Enter to apply.