git < 2.23: git switch and git restore Not Available
git < 2.23+git switch / git restore commands
`git switch` and `git restore` were introduced in git 2.23.0 (August 2019). Any git version before 2.23 does not have these commands and will return "git: 'switch' is not a git command" or similar. Use `git checkout` as the equivalent: `git checkout ` (equivalent to `git switch`) and `git checkout -- ` (equivalent to `git restore`).