DEV Community

Paul
Paul

Posted on

Quick OSX brew migration

Looking for a quick way to migrate your brew installed packages? Well look no further. Homebrew (https://brew.sh/) has a quick command to export a Brewfile which can then be used to restore your packages on a new machine.

Run the following to make the Brewfile

brew bundle dump
Enter fullscreen mode Exit fullscreen mode

and

brew bundle install
Enter fullscreen mode Exit fullscreen mode

to install on a new machine. Thanks to https://news.ycombinator.com/item?id=37084904 for the tip!

Top comments (0)