git see changes to one file
git diff filename.txt
Here is what the above code is Doing:
1. git diff: This command is used to show the difference between the working directory and the index or a tree.
2. filename.txt: This is the name of the file that you want to compare.