Created
May 25, 2013 12:40
-
-
Save tsu-nera/5648942 to your computer and use it in GitHub Desktop.
Cygwinでのgit pushでパスワード省略
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/zsh | |
| # ログイン情報 | |
| username=tsu-nera | |
| password=************ | |
| # expect コマンドを実行 | |
| expect -c " | |
| # タイムアウト値の指定 | |
| set timeout 20 | |
| spawn git push | |
| # login | |
| expect \"Username for \'https://github.com\':\" | |
| send \"$username\n\" | |
| expect \"Password for \'https://$username@github.com\':\" | |
| send \"$password\n\" | |
| interact | |
| " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment