#HowTO
#/After/
- forking and adding the following public-inbox to your git config .. | grep sendmail
- amending commit and rebasing
git send-email --to=~carnotweat/publix-inbox@lists.sr.ht patches ${path-to-patch-file}
- sr.ht requires names to for
^[A-Za-z0-9._-]+$ [^1]
- In fzf ^2
#git config file
git config --get-regexp branch.${NAME}
#grep for pruning
- get the list of the refs to be deleted first, if they need be pruned
git fetch --prune && git branch -r | awk "{print \$1}" | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk "{print \$1}"