See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
These settings will allow the HP to restart after a power loss. Useful if the computer is running as a headless server.
From https://www.youtube.com/watch?v=JVQutwAVYiY
One off jobs in Mac OS X can be scheduled using the zsh command sched
to run a script in 10 minutes:
sched +600 /path/to/my-script.sh
# install pyenv
curl https://pyenv.run | bash
# set env vars to support pyenv
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc
Specify differences between to branches and only files with a specific filename:
git diff topic..main -- './file1.txt' '**/file1.txt'