Exécutez Git Pull du script Python

# pip install gitpython

import git 
git_dir = "path_to_repository"
g = git.cmd.Git(git_dir)
g.pull()
epinux