git init # git仓库初始化 git add . git commit -a -m "这里本次更改备注信息" # 本次提交主要干了什么事
git push -u origin master # 推送到远程仓库,
git pull origin master # 拉取远程仓库代码