Github

Debug Jekyll & Github_Page

January 16, 2025

摘要 新发的文章总是没有在博客显示 问题:新发的文章总是没有在博客显示 原因:Github默认时区是美国西部,比中国差不多晚一天,所以发布的文章都成了“Has a Future Date” 解决办法:在_config.yml文件中,增加Timezone的设置 找到原因过程: 发现Github Action ​ ​ ​ 研究Github Action 下载编译完的文件,发现没有最新的文章

Github & git

January 16, 2025

摘要 #Config # name,email 涉及contribution统计 git config --global user.name "Chen Xie" git config --global user.email "chenxie2016@163.com" # check the origin URL AND modify the origin URL git remote -v git remote set-url origin <NEW_GIT_URL_HERE> # simple...