This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Thomas Guyot-Sionnest
dermoth.noc.social.ap.brid.gy
did:plc:blrwand4cmkj4dbcv2qocmoe
#TIL you need a second `-f` switch to git-clean nested #git repositories...
Ex. if your build clones external repositories into an ignored path such as `build/`, either one of these will do:
```sh
git clean -ffnX build/
```
Or
```sh
cd build
git clean -ffndX
```
Remove the `-n` switch to […]
https://noc.social/@dermoth/112997657044410252
2024-08-21T02:30:13.000Z