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 7e5f405 commit 2ac3dbfCopy full SHA for 2ac3dbf
Github-Automation/main.py
@@ -7,14 +7,16 @@ def init():
7
info.remove('n')
8
git.init()
9
git.createReadme()
10
- git.add(['README.md'])
+ git.add(['.'])
11
git.commit(['README.md'])
12
+ git.setBranch(info[1])
13
+ git.setremote(info[0])
14
+ git.push(info[0] , info[1])
15
print('initial setup done :)')
16
filechange.ischanged(info[0] , info[1])
- git.push(info[0] , info[1])
17
else:
18
print('Retrieving info from git directory')
19
20
21
if __name__ == '__main__':
- init()
22
+ init()
0 commit comments