2
gitpython 모듈을 사용하여 새로운 git repo를 업스트림에 넣으려고합니다. 아래는 내가 뭘 단계는 푸시를 (실행하는 동안) 오류를 128gitpython은 'git push --porcelain origin'을 종료 코드 128과 함께 반환합니다.
# Initialize a local git repo
init_repo = Repo.init(gitlocalrepodir+"%s" %(gitinitrepo))
# Add a file to this new local git repo
init_repo.index.add([filename])
# Initial commit
init_repo.index.commit('Initial Commit - %s' %(timestr))
# Create remote
init_repo.create_remote('origin', giturl+gitinitrepo+'.git')
# Push upstream (Origin)
init_repo.remotes.origin.push()
를 얻을 gitpython에서 예외가 발생합니다 : GitHub의에
'git push --porcelain origin' returned with exit code 128
액세스가 SSH를 통해입니다.
내가 잘못하고있는 것을보고 있습니까?