目录
git安装地址
git配置
提交代码时使用的命令
git安装地址
Git for WindowsWe bring the awesome Git VCS to Windowshttps://gitforwindows.org/
打开终端,输入git --version
git配置
git config --global user.name "用户名"
git config --global user.email "邮箱"
提交代码时使用的命令
git pull --rebase
git add .
git commit -m '提交文件的名称'
git push -u origin main