This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is useful command suppose if u missed file now u want to track the commits where the file was modified | |
git log --follow -p -- file | |
If you do not know the exact path you may use | |
git log --all --full-history -- **/thefile.* | |
If you know the path the file was at, you can do this: |