Get the latest tech news
Use Long Options in Scripts
Many command line utilities support short form options (-f) and long form options (--force). Short form is for interactive usage. In scripts, use the long form.
That is, in your terminal, type$ git switch -c my-new-branch In your release infrastructure script, write Long form options are much more self-explanatory for the reader.
Or read this on Hacker News