Finding with Git:
Git is an amazing version control system that never loses anything, butsometimes it can be hard to find out where things are. Most of the timeit is going to be git log that is our friend, but not all the time.
Where is my file?
Sometimes you know that you have a file in your repository but, youdon't know exactly where it is. git ls-files is the answer.
# Find all files with the name security in the path.
$ git ls-files |...