Git操作

# Git操作

// 关联远程仓库
git remote add origin xxx(远程仓库地址)

// 将项目推送到远程仓库
git push -u origin master