VS Code CLI Tools Tools for integrating with VS Code, primarily for viewing diffs. Requirements VS Code must be installed with the CLI available in PATH. Opening a Diff Compare two files side by side in VS Code: Git Diffs in VS Code Simple Approach (no config needed) Extract the old version to a temp file, then diff: Gotchas - File must exist and have changes between the compared revisions - Use to verify file has history before diffing When to Use - Showing the user what changed in a file - Comparing two versions of code - Reviewing git changes visually ---