我要push静态博客时都要输入用户名和密码,特麻烦,百度了一下有好几种免输密码的方式,不知所云,后来尝试了一种成功,看官看过来。
$ cd output/.git
$ vim config
看到这一段
[remote "origin"] url = https://github.com/yourname/yourname.github.io.git
将其改为:
[remote "origin"] url = https://yourname:password@github.com/yourname/yourname.github.io.git
当然,这个操作最好是在自己的机器上,毕竟用户名和密码明文放在上面,在其它机器上还是老老实实输入用户名和密码吧。