Init

域名信箱

GitHub

使用 SSH 連線登入 GitHub

# 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