git 推送到github最常用命令

初始化仓库,上传到github中。

git init
git add README.md
git commit -m "first commit"
git remote add origin [email protected]:名称/仓库名称.git
git push -u origin master

猜你喜欢

转载自www.cnblogs.com/heenhui2016/p/10709969.html