We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 520ca0f commit b49a628Copy full SHA for b49a628
Github-Automation/gitcommands.py
@@ -36,6 +36,13 @@ def commit(filelist):
36
filelist.remove(file)
37
call('git commit -m "' + msg + '"')
38
call('cls' , shell=True)
39
+
40
+def setremote(url):
41
+ call('git remote add origin ' + url)
42
43
+def setBranch(branch):
44
+ call('git branch -M ' + branch)
45
46
# git push
47
def push(url , branch):
48
call('git push -u ' + url + ' ' + branch)
0 commit comments