Rendered at 05:28:18 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
evanjrowley 2 hours ago [-]
How I use them: My big expensive mechanical keyboard collection is mostly using QMK firmware. For whichever keyboards I'm currently using, I have a git worktree per-keyboard.
chmaynard 6 hours ago [-]
It would be useful to mention that
$ git reset ~HEAD
doesn't specify a reset mode, so the default mode --mixed is used. I prefer to use
$ git reset --soft ~HEAD
which leaves both the working tree and index unchanged.