Let’s say you want to submit a quick, perhaps even trivial, one-off pull request (PR). One step you can do to minimize the number of decisions1 to make is to have a git alias that creates a branch with an arbitrary name. % cat ~/.gitconfig # ... [alias] nbt = !git nb \"thiagowfx/$(shuf -n1 /usr/share/dict/words | tr \"[:upper:]\" \"[:lower:]\")\" Running git nbt will create a branch such as thiagowfx/foo. The {username}/ prefix is to make it easier to attribute your branches to yourself, which c...