diff --git a/execute.py b/execute.py index f114a6c..68dfe57 100755 --- a/execute.py +++ b/execute.py @@ -36,6 +36,12 @@ value = 'git@"'+base64_string+'"' cmd = 'git config set --global ' + escape(key) + ' ' + escape(GITHUB_SERVER_URL) result = os.popen(cmd) +cmd = 'git init' +os.popen(cmd) + +cmd = 'git remote add origin ' + GITHUB_SERVER_URL + '/' + GITHUB_REPOSITORY +os.popen(cmd) + # cmd = 'git config list --local' # print(cmd) # result = os.popen(cmd)