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.
To add and commit files to a Git repository Enter git status to see the changes to be committed. Enter git commit -m '<commit_message>' at the command line to commit new files/changes to the local repository. For the <commit_message>, you can enter anything that describes the changes you are committing.
Find the commit ID of the version of the file you want to revert to. Find the path to the file you want to revert from the working directory. In the terminal, change directories to the working directory. Type git checkout [commit ID] -- path/to/file and hit enter.
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)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With