Questions et réponses pour le gitpython :
GitPython est une bibliothèque python utilisée pour interagir avec les référentiels Git
3
votes
Iterate commits b / w 2 commits spécifiés dans GitPython
import git repo = git.Repo(repo_dir) ref_name = 'master' for commit in repo.iter_commits(rev=ref_name): <some code here> This code iterates through all the commits. I want to iterate b ...
python
git
loops
commit
gitpython
4 commentaire(s)