# Useful git commands

## Reading the history

Find the commits that edited a file which is now deleted.

```bash
git log --all --full-history -- <file_path>
```