文章
12
标签
2
分类
1
首页
画廊
追番
说说
Zhichen's Blog
follow
搜索
首页
画廊
追番
说说
follow
发表于
2024-11-05
|
更新于
2025-11-11
|
总字数:
0
|
阅读时长:
1分钟
|
浏览量:
文章作者:
Zhichen
文章链接:
https://blog.wzcv.me/posts/68344470.html
版权声明:
本博客所有文章除特别声明外,均采用
CC BY-NC-SA 4.0
许可协议。转载请注明来源
Zhichen's Blog
!
上一篇
github action实现hexo自动推送,多端同步,自动更新主题
在GitHub建立hexo源仓库 将本地原始数据push上去 使用submodule将主题添加 例如: [submodule "themes/butterfly"] path = themes/butterfly url = https://github.com/jerryc127/hexo-theme-butterfly 去获取发布仓库的PAT 再在源仓库secret中添加GITHUBTOKEN,如图: 建立workflows/deploy.yaml name: Deploy hexo blog on: workflow_dispatch: push: branches: - main jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [20.x] steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Configuration environment run: | sudo timedatectl set-timezone "Asia/Shanghai" git config --global user.name "${{ secrets.USERNAME }}" git config --global user.email "${{ secrets.EMAIL }}" - name: Set up PAT for git run: | git config --global url."https://${{ secrets.GITHUBTOKEN }}@github.com/".insteadOf "git@github.com:" git remote set-url origin ${{ secrets.GITURL }} ...
下一篇
Screen
以下是该博客文章的摘要: 本文介绍了如何使用GNU Screen进行终端会话的管理。核心内容包括使用`screen -ls`命令列出所有当前的Screen会话,`screen -d xxx`命令将一个附加(attached)的会话转为分离(detached)状态,以及`screen -r xxx`命令用于重新连接到一个已分离的会话。文章强调了这些命令在多任务处理和保持会话连续性方面的实用性,并建议用户在需要长时间运行任务或保持终端会话不中断的情况下使用Screen工具。
评论
Zhichen
文章
12
标签
2
分类
1
Follow Me
公告
This is my Blog
最新文章
λ和λ*关系证明
2024-12-11
计算机网络体系分层
2024-12-08
计组,可见不可见,透明不透明
2024-12-06
阿里系cookie之acw_sc__v2
2024-11-27
python中日期格式中去掉自动补位 0
2024-11-20
繁
搜索
数据加载中