chauncy chauncy chauncy chauncy
摘要: 1、打开cmd,进入项目目录下2、git init 3、git add .4、git status5、git commit -m '第一次上传'6、git remote add origin https://github.com/shichangqi/scqvue.git7、git pull --r 阅读全文
posted @ 2019-08-07 17:49 chauncySHI 阅读(1331) 评论(0) 推荐(0)
摘要: 创建uat分支并切换到分支下 git checkout -b uat 添加文件并且提交到本地库 git add . git commit -m'提交' 提交文件到git git push --set-upstream origin uat 切换分支 git checkout master 将提交同步 阅读全文
posted @ 2019-08-07 17:44 chauncySHI 阅读(2847) 评论(0) 推荐(1)