查看当前分支列表
git branch
查看当前分支列表
git branch
如果没有 main 分支,则创建并切换到 main 分支
git checkout -b main
添加和提交所有更改(如果有未提交的更改)
git add .
git commit -m "Initial commit"
推送 main 分支到远程仓库
git push -u VSCodeMXSTM32F407ZG main
git branch
git branch
git checkout -b main
git add .
git commit -m "Initial commit"
git push -u VSCodeMXSTM32F407ZG main