Skip to content

Commit 847e4ce

Browse files
committed
Added script.py
1 parent 025fad5 commit 847e4ce

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

script.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import os
2+
message = input("Enter commit message: ")
3+
os.system("git add .")
4+
os.system("git commit -m \"" + message + "\"")
5+
os.system("git push -u origin master")

0 commit comments

Comments
 (0)