git 命令的学习笔记
git config --global user.name "<your_name>" #配置姓名
git config --global user.email "<your_email>" #配置邮箱
git init
git clone
git status
git add #“git add .” 指令可能会更常用些
git commit -m "<描述信息>"
git branch new-branch #注意: 必须提交一次文件才能使用 #此项存疑
git remote -v #此项存疑
git push origin main #此项未验证
git pull origin main #此项未验证
git diff