git 基础操作教程:提交第一个项目 0 By 董德多 on 2024年6月25日 网络技术 首先通过 git 进入到项目的根目录。git init git add . git commit -m "首次提交" git branch -M main git remote add origin 你要提交到的git地址,比如:https://github.com/kpsanmao/www_02405_com.git git push -u origin main git