I have many files in vs code that they are not committed yet I want to add one folder with all files in it is there any way to do it
the is a command git add --all but it adds also all files that I don't want to add just files in the folder that I am in it I want to add and commit.
git add folder_namegit add folder. It will add just that folder and all of its files into the staging area. Then you can commit.