gitHub实用命令积累

create a new repository on the command line

git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/qiuer/yii2-advanced.git
git push -u origin master

push an existing repository from the command line

git remote add origin https://github.com/qiuer/yii2-advanced.git
git push -u origin master





版权声明:本文为qiuxuemei915原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。