赞
踩
git init
这一步也是在你的项目根目录里
git add 你的文件名
git commit -m "提交的注释信息"
git remote add origin 你的Git URL
其中,-u 参数表示将远程仓库与本地仓库的分支关联,master 表示要推送的本地分支。
git push -u origin master
这样就可以了~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。