$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
When I tried this command to install homebrew, It cannot be installed in Mac M3.
curl is having trouble verifying the SSL certificate of the server from which it's trying to download the Homebrew installation script.
Solution 1) Update CA certificates
# Mac OS $ brew install curl-ca-bundle
Solution 2) Use -k Option as a Temporary Workaround
$ /bin/bash -c "$(curl -k -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Solution1) AAA
Solution2) BBB