GitPython を使用していくつかの Python スクリプトを作成しようとしています。これを使用して、多くのブランチを管理するときに日常のタスクを簡素化できます。
また、複雑なスクリプトを作成することに関しては、Python についてはまったくの初心者です。
これは私が使用した API です: GitPython API doc
GitPython で次のように記述し、HEAD リモート ブランチが指していることを示す部分を解析したいと考えています。つまり、基本的に取得したいのはremotes/origin/HEAD
$ git branch -a
master
* branch_to_remove
remotes/origin/HEAD -> origin/master
remotes/origin/master
remotes/origin/testing
API ドキュメントを何度も参照していますが、最初はこれらの API ドキュメントの Python 形式を理解するのに苦労しremote_head
ました。class git.refs.reference.Reference(repo, path, check_path=True)
しかし、それを呼び出す/初期化する方法さえ知りません。
これが私がこれまでに持っていたものであり、私が何をしようとしているのか、単純に「ブランチなし」状態にリセットして、現在のブランチを削除することがわかります。
import git
from git import *
repo = git.Repo("/some/path/testing")
repo.git.branch()
[some code to get the remotes/origin/HEAD, set it to remoteHeadBranch ]
repo.git.checkout(remoteHeadBranch) # this should reset the Git back to 'no branch' state
repo.git.checkout(D="branch_to_remove")
どんな助けでも大歓迎です!
ありがとう。