---
title: "brew: upgrade HEAD formulas"
url: https://perrotta.dev/2025/10/brew-upgrade-head-formulas/
last_updated: 2025-12-25
---


[Previously]({{< ref "2025-10-17-distributing-my-own-scripts-via-homebrew" >}}).

When a package is installed with `--HEAD`:

```shell
% brew install --HEAD pancake
```

...`brew upgrade` won't automatically fetch its latest version.

In order to do so, run:

```shell
% brew upgrade --fetch-HEAD [package...]
```

[Source](https://apple.stackexchange.com/questions/439595/brew-head-update-behaviour)[^1].

[^1]: I answered it there, does that count as linking to the source?

