1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库
git init
2、把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的小数点“.”,意为添加文件夹下的所有文件
git add .
3、用命令 git commit告诉Git,把文件提交到仓库。引号内为提交说明
git commit -m 'first commit'
4、关联到远程库
git remote add origin 你的远程库地址
如:git remote add origin https://github.com/cade8800/ionic-demo.git
git pull --rebase origin master
git push origin master
来源:CSDN
作者:Lucky____Boy
链接:https://blog.csdn.net/Lucky____Boy/article/details/103820398