标签:
在本地建立好git仓库之后,怎样将项目发布到远程仓库。步骤如下:
1,首先在https://github.com注册账户;
2,然后创建create repository(建立仓库);
3,给项目添加本地仓库:git remote add origin ‘https://github.com/username/repositoryname.git‘;
4,将本地项目推送到远程仓库:git push origin master
标签:
原文地址:http://www.cnblogs.com/startDream/p/5194549.html