Open chenyinkai opened 6 years ago
push
github
原因是使用了 https 方式 push 使用 git remote -v 查看对应的仓库地址, 如果返回的结果是以下这种格式的, 则是https方式
原因是使用了 https 方式 push
https
使用 git remote -v 查看对应的仓库地址, 如果返回的结果是以下这种格式的, 则是https方式
git remote -v
origin https://github.com/chenyinkai/demo.git (fetch) origin https://github.com/chenyinkai/demo.git (push)
下面换成 ssh 方式
ssh
git remote rm origin git remote add origin git@github.com:chenyinkai/demo.git git push origin
修改 _config.yml 下 repository 的格式
repository: git@github.com:chenyinkai/chenyinkai.github.io.git
push
到github
远程仓库时,每次都要输入用户名和密码的问题下面换成
ssh
方式hexo搭建的博客修改
push
方式