摘要:
创建repository可以在Github上无限制使用public repository进行源代码管理,创建一个repository很简单,不多说了。获取代码到本地首先要安装Git,然后使用命令把代码从Github上拷贝到本地:git clone https://github.com//如果是第一次使用,自己的repository还是空的,同样可以使用remote进行链接git remote add origin https://github.com/username/repository_name.git提交更新到服务器如果我们要新增或者更新一个文件,比如test.html。我们要先确保这个 阅读全文