目的 これを使う GitPython Documentation — GitPython 1.0.1 documentation 環境はpython 3.4です 手順 いれる $ pip install gitpython こんな感じでリポジトリを仮に作ってみる github.com やりたいこと git clone git branch -b git add git commit こんな感じで書く import os import git _repo_path = os.path.join('./', 'repo') # clone from remote git_repo = git.Repo.clone_from('git@github.com:rane-hs/test.git', _repo_path, branch='master') # create new branch fr