git是一个开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目。
git官网: Git
二、git安装傻瓜式安装即可,一直点击下一步。
检测是否安装成功:安装成功后,使用快捷键win+r, cmd, 打开控制台,然后输入git命令,看到如图所示的画面即表示安装成功了。
安装完成后,需要进行设置,在命令行输入以下代码:顾名思义,这是设置你的名字和Email地址。
$ git config --global user.name "田根旺" $ git config --global user.email "873206064@qq.com"查看是否设置成功
$ git config user.name $ git config user.email详情演示 三、github 3.1github介绍
GitHub是一个面向开源及私有软件项目的托管平台,因为只支持Git作为唯一的版本库格式进行托管,故名GitHub。
github官网: https://github.com/
3.2github访问报错1.原因:
由于github域名解析造成偶尔不能访问Github网站。
访问网址时先搜索hosts文件,如果有网址对应的ip则不需要dns域名解析,因此可以将网址的ip配成静态ip,减少解析过程,提高访问速度。
2.解决方法:修改hosts文件(位置为C:WindowsSystem32driversetc)再该文件的最下面增加:
140.82.112.4 github.com 140.82.113.3 gist.github.com 185.199.108.153 assets-cdn.github.com 199.232.68.133 raw.githubusercontent.com 199.232.68.133 gist.githubusercontent.com 199.232.68.133 cloud.githubusercontent.com 151.101.192.133 camo.githubusercontent.com 199.232.68.133 avatars0.githubusercontent.com 199.232.68.133 avatars1.githubusercontent.com 199.232.68.133 avatars2.githubusercontent.com 199.232.68.133 avatars3.githubusercontent.com 199.232.68.133 avatars4.githubusercontent.com 199.232.68.133 avatars5.githubusercontent.com 199.232.68.133 avatars6.githubusercontent.com 199.232.68.133 avatars7.githubusercontent.com 199.232.68.133 avatars8.githubusercontent.com
3.刷新网络DNS缓存
打开dos窗口,执行:ipconfig /flushdns,这样就可以访问Github啦!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)