My apologies if this is a silly question but I'm a VSS/VSTS guy trying to convert to Git :)
I cloned a repository and pulled down a load of Visual Studio projects. While working on those projects I noticed that another developer had submitted an invalid .sql file. I fixed that .sql file for them, but am now unsure how to check in just that .sql file
My code changes are all half-baked so they can't be checked in at present. I have Git Extensions on my computer, and when I right click on the file in Windows Explorer and go Git Extensions -> Commit, there are lots of files referenced on the left. The file I want to check in has a symbol of a pencil, and the mass of other files all have a green + symbol.
you only need to add the changes in the sql file to the index and run git commit.
git add path/to/file.sql
git commit -m 'fixed broken sql file'
don't worry about your other changes, as long as you haven't add
ed them, they won't be committed (to make sure there are no changes in the index, run git reset
before adding the other change)