git 常见命令使用git 仓库初始化echo "# test" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
2022-07-09