Just found this solution and this works :
I have also attached the solution screen recording :
https://youtu.be/vFJCrzlPOow
GIT NOT FOUND ERROR IN VS CODE (Mac OS Ventura)
Step 1: Check if git is installed in your system by running the below command
git --version
Step 2: Find the path where GIT is installed by running the below command
which git
Step 3: Open Visual Studio Code,
navigate VS code -> Preferences -> Settings -> Search "git path" in the settings search box -> "Edit in settings.json" (in the first option)
"git.path", "paste_your_git_path_here"
(Hint: Follow Step 2 to find the path)
This helped solve the VS Code Git not found error!!
Thank You :)