All Questions
2 questions
0
votes
1
answer
893
views
Push refs/for/master and change-id issue using Gitpython
I have the following code where I want to push changes in my branch to gerrit using GitpYthon.
repo_path_new = repo_path+repo_name
repo_obj = Repo(repo_path_new)
os.chdir(repo_path_new)
repo_obj.git....
0
votes
1
answer
529
views
No handlers could be found for logger "git.remote"
So I am getting the issue using gitpython:
No handlers could be found for logger "git.remote"
My code
print repo_object.remote() # origin
print repo_object.active_branch # master
print repo_object....