[go: up one dir, main page]

Today I Learned

tags


2025/01/07

That a 0-hour contract is a UK labor setup where the employer doesn’t guaruntee any work hours to the employee, but binds them with a contract. https://en.wikipedia.org/wiki/Zero-hour_contract


That you can configure git to append a Signed-off-by: ... trailer using git config format.signOff true.

That you can configure git to use your SSH key to sign commits and tags with

git config gpg.format ssh
git config commit.gpgSign true
git config tag.gpgSign true

See