Skip to content

Commit 6e0196e

Browse files
author
boraxpr
committed
A script to git push ssh
1 parent 5b05213 commit 6e0196e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

sshpush.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/python3
2+
import subprocess
3+
4+
5+
def sshpush():
6+
subprocess.call('git push [email protected]:boraxpr/bitesofpy.git'.split())
7+
8+
9+
if __name__ == '__main__':
10+
sshpush()

0 commit comments

Comments
 (0)