在git上新建repositories
git init // 初始化仓库 用于存储项目
git add . //添加远程仓库, 加 “.” 表示添加所有文件
git commit -m "Initial commit"//加备注
git remote add origin https://github.com/emonZan/Angular4.git //给仓库加地址匹配
git push -u origin master// 提交到远程

在git上新建repositories
git init // 初始化仓库 用于存储项目
git add . //添加远程仓库, 加 “.” 表示添加所有文件
git commit -m "Initial commit"//加备注
git remote add origin https://github.com/emonZan/Angular4.git //给仓库加地址匹配
git push -u origin master// 提交到远程
本文标题:如何把当前项目push到Git
本文链接:https://www.haomeiwen.com/subject/jtdnjxtx.html
网友评论