git与github

1. git与github的区别

Github is a host which stores many repos, people using git can put their projects on it. Git is a software. You can use it for version control. You can also use it without Github and just store your code locally.

Git是一个分布式版本控制工具,很多有名的软件都使用Git来进行版本控制,与常用的版本控制工具CVS、SVN等不同,它采用了分布式版本库的方式,不必服务器端软件支持,使源代码的发布和交流极其方便,GitHub是流行的Git存取站点,可以托管各种Git库,开源项目可以通过GitHub免费托管,GitHub深受广大程序员的喜爱(摘自http://www.williamlong.info/archives/3351.html

git创建(http://www.yangzhiping.com/tech/github.html

2. git下载

git下载http://code.google.com/p/msysgit/downloads/list(注意:git有很多软件版本,常用的是msysgit,使用方法见http://hi.baidu.com/mcspring/item/198f1e977f8f98bccd80e5b3

github下载 官网https://github.com/

原文地址:https://www.cnblogs.com/dongxiaoguang/p/3757224.html