I'm using Visual Studio Code in Windows 10 and also have Git installed.
I have encountered two issues:
I have tried to perform Git commands on the "command palette" (as shown on many VSCode tutorials) but VSCode is not recognizing any commands. I ended using the "integrated terminal" using
bash.exeto clone my repository andcheckout master. That did the trick and now I can see my project under the Explorer icon.Now that I have files and VSCode sees them if i try to use again the "command palette" to checkout or pull or commit it is not seeing my repository or branches or master. I have to go back and use the "integrated terminal".
Why is the "command palette" not working?
If I edit any of my files under the Explorer icon that I previously cloned and checkout the changes are not shown under the Git icon.
But I've noticed that if I make changes to the settings.json (VSCode preference file) it shows under the Git icon that changes have been made and it asks me if I want to commit the changes.
Why is it that VSCode is not tracking or showing the changes I've made on my own files and only track the changes on its own files?