Skip to content

Commit

Permalink
added format to the commit message in v 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
memetics19 committed May 3, 2021
1 parent 0961b58 commit 074754e
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 43 deletions.
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/inspectionProfiles/profiles_settings.xml

This file was deleted.

4 changes: 0 additions & 4 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

10 changes: 0 additions & 10 deletions .idea/pythonProject1.iml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

2 changes: 1 addition & 1 deletion gitfun/GitFun.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def init_push(url:str) -> str:
subprocess.getoutput("git init")
subprocess.getoutput("git remote add origin {0}").format(url)
subprocess.getoutput("git add .")
subprocess.getoutput("git commit -m %s")%(commit_message)
subprocess.getoutput("git commit -m {0}").format(commit_message)
return subprocess.getoutput("git push --set-upstream origin master ")


Expand Down

0 comments on commit 074754e

Please sign in to comment.