We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 864f801 commit c82fa95Copy full SHA for c82fa95
1 file changed
hooks/post_gen_project.py
@@ -55,7 +55,7 @@ def addremote(ctx):
55
''' Adds a new remote to your git repo and pushes to Github '''
56
57
if GITUSER:
58
- ctx.run("git remote add origin https://github.com:{0}/{1}.git".format(GITUSER, REPONAME))
+ ctx.run("git remote add origin https://github.com/{0}/{1}.git".format(GITUSER, REPONAME))
59
try:
60
print('Pushing to github ..')
61
ctx.run("git push -u origin master")
0 commit comments