Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 331 Bytes

GIT-COMMAND.md

File metadata and controls

14 lines (13 loc) · 331 Bytes
提交一个新项目
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/BillNwc/Gitcommand.git
git push -u origin master
上传已存在项目
git remote add origin https://github.com/BillNwc/Gitcommand.git
git push -u origin master