Post History
You can try to search your shell's history for brew install. Every shell has its own history command, but for example on fish I can do history | rg brew install. (rg is https://github.com/BurntSush...
Answer
#2: Post edited
- You can try to search your shell's history for `brew install`. Every shell has its own history command, but for example on fish I can do `history | rg brew install`. (`rg` is https://github.com/BurntSushi/ripgrep)
This should make it easy to figure out most things you explicitly installed, but it will miss things installed history entries being deleted (I think some shells default to a max of 1000 commands).
- You can try to search your shell's history for `brew install`. Every shell has its own history command, but for example on fish I can do `history | rg brew install`. (`rg` is https://github.com/BurntSushi/ripgrep)
- This should make it easy to figure out most things you explicitly installed, but it will miss things installed history entries being deleted (I think some shells default to a max of 1000 commands).
- Brew does, of course, have a notion of "explicitly installed" packages and ways of displaying those. But then you have to look up how to do that...
#1: Initial revision
You can try to search your shell's history for `brew install`. Every shell has its own history command, but for example on fish I can do `history | rg brew install`. (`rg` is https://github.com/BurntSushi/ripgrep) This should make it easy to figure out most things you explicitly installed, but it will miss things installed history entries being deleted (I think some shells default to a max of 1000 commands).