吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1818|回复: 2
收起左侧

[Python 原创] [python3.6+] 通过换源解决github仓库克隆速度慢的问题

[复制链接]
shooan 发表于 2021-9-25 11:19

[python3.6+] 通过换源解决github仓库克隆速度慢的问题

说明

由于网络的问题,我们使用在克隆github仓库的时候,发现速度是很慢的。如果仓库比较大的话,这种体验是很糟糕的。

所以我写了这个python脚本。

使用要求:

  • python3.6+
  • git

代码和使用方法

代码

代码托管在码云上面,仓库的连接为:

fasterclone: make git clone faster in China Mainland by changing source. (gitee.com)

如果你不使用码云的话,直接使用下面的代码

#!/usr/bin/env python
# 文件名: fasterclone.py
import subprocess
import sys
import os

# exit code
NO_URL_PROVIDED = 1
URL_FORMAT_ERROR = 2
CLONE_FAILED = 3
REPO_NOT_EXISTS = 4

def get_github_repo_rul(args):
  github_repo_url = ''
  github_repo_urls = [x for x in args if x.startswith('https://github.com/') and x.endswith('.git')]
  try:
    github_repo_url = github_repo_urls[0]
  except IndexError:
    pass
  return github_repo_url

# change source
def change_source(github_repo_url):
  replaced_repo_url = github_repo_url.replace('github.com', 'github.com.cnpmjs.org')
  return replaced_repo_url

# perform clone 
def clone(args):

  proc = subprocess.run(["git", "clone", *args])

  if proc.returncode != 0:
    exit(CLONE_FAILED)

def get_repo_dir(url):
  # get repo name
  # e.g. parse `breakfast` from  https://github.com/Blithe-Chiang/breakfast.git 
  repo_dir = url[url.rindex('/')+1:-4] # default 

  return repo_dir

# restore original upstream
def restore(repo_dir, original_url):
  print('restoring...')

  os.chdir(repo_dir)

  subprocess.run(["git", "remote", "remove", "origin"])
  subprocess.run(["git", "remote", "add", "origin", original_url])

def main():
  args = sys.argv[1:]

  github_repo_url = get_github_repo_rul(args)

  # do not change source because this is not a github repo
  if not github_repo_url:
    clone(args)
    exit(0)

  # change source
  idx = args.index(github_repo_url)
  replaced_url = change_source(github_repo_url)
  args = args[:idx] + [replaced_url] + args[idx+1:]

  clone(args)

  # restore the original url
  try:
    # from git-clone manual
    # syntax: git clone <repository> [<directory>]
    repo_dir = args[idx+1] # try to get specified directory
  except IndexError:
    repo_dir = get_repo_dir(github_repo_url)

  restore(repo_dir, github_repo_url)

if __name__ == '__main__':
  main()

使用方法

假设上述的代码被保存为 fasterclone.py

python fasterclone.py <仓库地址>
示例
使用此脚本

image-20210925111125025

使用git clone

image-20210925111252492

可以看到,速度还是有点差别的

原理

换源

将clone源从 github.com 换成 github.com.cnpmjs.org。类似于pip换源。

这是github仓库的国内的镜像源。可以加速克隆的速度。

还原

将仓库的origin重新还原成 github.com。让git认为你的远程仓库位于github。

感觉这一步不是很有必要,但是还是顺手实现了这个功能。

已知问题

换源成 github.com.cnpmjs.org ,可能会出现,克隆下来的仓库只有master/main分支。这个应该是镜像源的问题。

免费评分

参与人数 2吾爱币 +8 热心值 +1 收起 理由
苏紫方璇 + 7 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!
huayugongju + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

黄教主 发表于 2021-9-25 20:53
搞这么复杂 直接使用git insteadof 替换github.com的地址就好了
 楼主| shooan 发表于 2021-9-26 08:08
黄教主 发表于 2021-9-25 20:53
搞这么复杂 直接使用git insteadof 替换github.com的地址就好了

学到了!!看来我对git的了解还是太少了
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 11:28

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表