I was recently making some changes to a local Git repo, and I saw that a bunch of files had been deleted from the local repository. I hadn't committed these changes, so the files weren't actually deleted on the remote Git repo, but I'm still curious as to when these files were deleted on my local machine (as I don't recall deleting anything, and I would definitely never delete these files).
I basically just typed git status
, and saw that a bunch of files in my local repo had been deleted:
modified: .DS_Store
deleted: _posts/2019-06-06-First-Post.markdown
deleted: _posts/2019-06-07-Probduct-Update.markdown
deleted: _posts/2019-06-28-Project-Update.markdown
deleted: about.md
modified: assets/.DS_Store
deleted: assets/graph.png
I don't know how or why these files got deleted, that is what I'm interested in figuring out.