一、博客更新常用命令

  废柴小白刚上手老是记不住哇,好记性不如烂笔头,把常用命令放下面,下次就好找啦^0^ (哼,看我用的多了还记不住你!!! 首先打开cmd,输入以下命令

1hugo --theme=yinyang --baseURL="https://Advance2020.github.io" --buildDrafts

然后进入Public文件夹,打开git:

1git add .
2git commit -m "mmmmm"
3git push -u origin matser

二、Git认证

  这次push总是提交失败,各种问题(time out、reset、denied)全碰了一遍,真是不疯魔不成活。踩完各种雷,还是想整理整理,说不定下次还要踩。

使用令牌登录

  不要使用用户名密码,git已经改了。去github-settings-Developer settings生成Tokens(classic)。划重点,生成令牌一定要勾选各种权限,不然就等着Permission denied!

常用命令

  1. 执行这个命令之后,可以重新写入账号令牌
1git config --system --unset credential.helper
  1. 配置为缓存密码 之后的操作就不需要输入密码了。
1git config --global credential.helper store
  1. 使用下面命令清除使用密码缓存的配置
1git config --local --unset credential.helper
2git config --global --unset credential.helper
3git config --system --unset credential.helper

PS: 令牌会过期,到时候重新生成一个就好。