githubのダウンロードが遅いという問題を解決する

1608 ワード

  • GitHubの公式CDNアドレスを取得して開きますhttps://www.ipaddress.com/以下の3つのリンクを問い合わせるDNSアドレス解析github.com assets-cdn.github.com github.global.ssl.fastly.netは、問い合わせるIPアドレスを記録する.
  • システムホストファイルを変更システム-ホストファイルを開く(管理者権限が必要).パス:C:\Windows\System32\drivers\etc.末尾に3行のレコードを追加して保存する(管理者権限が必要、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
    
    
  • システムDNSキャッシュWindows+Xオープンシステムコマンドライン(管理者ID)またはpowershell ipconfig /flushdns手動リフレッシュシステムDNSキャッシュを実行します.Githubを開いて、プロジェクトをローカルにクローンしてみましょう.著者らの電気通信のブロードバンドは簡単に10 M/sの速度に達します.
  • 作者:笑笑ちゃん丶链接:https://www.jianshu.com/p/1a902fcaf0ae出典:著作権は作者の所有であり、いかなる形式の転載も作者に連絡して授権を得て出典を明記してください.