解决github下载慢的问题

  1. 获取GitHub的官方CDN地址
    打开https://www.ipaddress.com/
    查询以下三个链接的DNS地址解析
    github.com
    assets-cdn.github.com
    github.global.ssl.fastly.net
    记录下查询到的IP地址。

  2. 修改系统主机文件
    打开系统-主机文件(需管理员权限)。
    路径:C:\Windows\System32\drivers\etc
    。在末尾添加三行记录并保存(需管理员权限,注意IP地址与域名间需留有空格)

# Copyright (c) 1993-2009 Microsoft Corp.
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97    rhino.acme.com          # source server
#      38.25.63.10    x.acme.com              # x client host
# localhost name resolution is handled within DNS itself.
#  127.0.0.1      localhost
#  ::1            localhost
192.30.253.112    github.com
151.101.72.133    assets-cdn.github.com
151.101.193.194    github.global.ssl.fastly.net

  1. 刷新系统DNS缓存
    Windows + X打开系统命令行(管理员身份)或powershell
    运行ipconfig /flushdns手动刷新系统DNS缓存。
    现在打开Github,克隆一个项目到本地试试吧,作者这电信的宽带会轻松达到10M / s的速度。

作者:笑笑酱丶
链接:https://www.jianshu.com/p/1a902fcaf0ae
来源:
著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

你可能感兴趣的:(解决github下载慢的问题)