Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Git Case Fixer - Solve Case Sensitivity IssuesNew to Visual Studio Code? Get it now.
Git Case Fixer - Solve Case Sensitivity Issues

Git Case Fixer - Solve Case Sensitivity Issues

JustinXai Labs

| (0) | Free
Fix Git case sensitivity issues on Windows by renaming files through a two-step git mv process.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Git Case Fixer

A VS Code extension to fix case sensitivity issues for Git on Windows.

Features

  • Right-click on any file or folder in the Explorer context menu.
  • Select Fix Git Case Sensitivity.
  • The extension automatically runs a two-step git mv to force Git to record the case change on Windows.

Requirements

  • Git must be installed and available in PATH.
  • The file/folder must be inside a Git repository.

How It Works

On Windows, Git is case-insensitive by default, so it may not detect filename case changes. This extension works around the issue by renaming the file to a temporary name and then back to the target name:

git mv <current_name> <current_name>_tmp
git mv <current_name>_tmp <new_target_name>

Installation

  1. Clone or download this repository.
  2. Run npm install.
  3. Run npm run compile to compile TypeScript.
  4. Press F5 in VS Code to run in development mode.
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft