Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 322 Bytes

git笔记.md

File metadata and controls

10 lines (8 loc) · 322 Bytes

git笔记

  • 拉仓库 git clone https://github.com/molywyp/Note.github.io.git
  • 删除文件 git rm 项目笔记.md
  • 添加文件 git add 项目笔记.md
  • git commit -m "(修改描述)"
  • git config --global user.email "邮箱"
  • git config --global user.name"名字"
  • 提交修改 git push -u origin "main"