Even if they did, it isn't even enough to sustain the company to continue developing the browser.
This is exactly my point. They should establish direct Firefox donations. I agree that it won't change anything overnight, but they need to start somewhere.
For example Thunderbird is fully funded by donations.[1]
Of course Thunderbird's budget is in a different magnitude than Firefox but I'd guess the amount of users is also in a different magnitude.
[1] https://blog.thunderbird.net/2023/05/thunderbird-is-thriving...
* their revenue comes mostly from Google, they need to diversify
* but nobody will pay for a browser, so they need to offer other services
* then everyone criticises that they shill their other services and should instead focus on the browser
Realistically, what should they do to stop relying on money from their competitor and be continue their mission?
Of course Thunderbird's budget is in a different magnitude than Firefox but I'd guess the amount of users is also in a different magnitude.
As far as I know there has never been an attempt to fund Firefox by donations. You can _only_ donate to Mozilla, which does not go to Firefox development.
People keep saying it wouldn't work but it has also never been attempted so we do not know for sure.
[1] https://blog.thunderbird.net/2023/05/thunderbird-is-thriving...
I love backup branches as much as anyone but I'd also recommend getting used to `git reflog` or perhaps `git log --all --oneline --graph --reflog` if you're worried about losing commits.
There is one* footgun in git that you can't just reflog your way out of and it's stashes because they piggyback off of the reflog, so dropping stashes will also remove them from the reflog. In those cases you can still visualize them with `git fsck --connectivity-only | grep 'dangling commit' | awk '{print $3}' | xargs git log --oneline --graph --all --reflog`.
*(as long as you've committed your changes, if not then there are way more)