0%

github_配置https免密码

github_配置https免密码

创建token参考 git-action配置CI 的博客

前提:之前搭建hexo,配置了如何使用ssh免密推送。
本文主要讲述如何配置https免密push到github。
**仅用作经验记录**
  • 前提:
    • 创建的权限较大的token,可以配置永不过期token
  • 在环境中执行以下命令:
    1
    git remote set-url origin https://<github username>:<github_token>@github.com/<githuab username>/<github repository>.git
  • 为保证网络的稳定,配置 git proxy
    1
    2
    3
    # git config --global http.proxy http://192.168.31.115:1081
    # git config --global https.proxy https://192.168.31.115:1081
    # git config --list | grep proxy