git项目管理
1、远程仓库中的项目,同步到本地,后期通过GitHub进行协同工作
克隆到本地:$ git clone url
同步:$ git add
$ git commit -m 'commit'
$ git push
2、本地已存在的项目,同步到远程仓库中,
$ git remote add origin https://github.com/username/repositoryname.git
$ git push -u origin master
ps:如果提示 fatal: 远程 repositoryname已经存在,需要先删除关联,然后重新创建。
$ git remote rm origin