List paths starting with dot
By default, the typical directory listing command “ls” does not show paths that start with a dot. That is, paths that start with a dot are hidden like “.ssh” or “.git” etc. Most shells will list all paths including those with a leading dot by:
ls -a
For PowerShell to list paths with a leading dot:
ls -Fo
“-Fo” is short for “-Force”.