This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pip install gitpython numpy tqdm | |
import git | |
from collections import defaultdict | |
from datetime import timedelta | |
import numpy as np | |
import argparse | |
from tqdm import tqdm | |
def analyze_repo(repo_path, branch='main'): | |
repo = git.Repo(repo_path) |
OlderNewer