add yaml file

This commit is contained in:
si-gui 2020-05-12 17:37:59 +08:00
parent 356d44113f
commit f1334c6194

10
git_push.sh Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/expect
set username "si-gui"
set password "Fnst..4321"
spawn git push origin master:master -f
expect "*Username*" {send "$username\r"}
expect "*Password*" {send "$password\r"}
interact