git学习笔记之远程仓库操作

在本地建立好git仓库之后,怎样将项目发布到远程仓库。步骤如下:

1,首先在https://github.com注册账户;

2,然后创建create repository(建立仓库);

3,给项目添加本地仓库:git remote add origin 'https://github.com/username/repositoryname.git';

4,将本地项目推送到远程仓库:git push origin master

你可能感兴趣的:(git学习笔记之远程仓库操作)