标签:https commit 目录 stream vue 添加 origin 仓库 git push
1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库
git init
2、把文件添加到版本库中
git add -A
3、用命令 git commit告诉Git
git commit -m ‘first‘
4、关联到远程库
git remote add origin 你的远程库地址
git remote add origin ‘https://git.oschina.net/s/vue.git‘
5、获取远程库与本地同步合并
git pull origin master
6、使用 git push命令
git push --set-upstream origin master
标签:https commit 目录 stream vue 添加 origin 仓库 git push
原文地址:http://www.cnblogs.com/silences/p/6527025.html