域名信箱
- Email Forwarding & Email SMTP Server(開啟 2FA 才能設定 app pw)
- 域名後綴: https://tld-list.com/
- WHOIS 域名資料搜尋: https://whois.gandi.net/zh-hant
GitHub
使用 SSH 連線登入 GitHub
- Generating a new SSH key and adding it to the ssh-agent - GitHub Docs
- Adding a new SSH key to your GitHub account - GitHub Docs
# Test the SSH key:
ssh -T git@github.com
Create a repo
git init
git remote add origin git@github.com:USERNAME/REPOSITORY.git
git add --all
git commit -m "initial commit"
git push -u origin main