#!/bin/sh

# Project Colorize | Avoid commiting changes to .vscode/settings.json
if [ -f ".vscode/settings.json" ]; then
  if git diff --cached --name-only | grep -q ".vscode/settings.json"; then
    git reset HEAD .vscode/settings.json
  fi
fi