shell一键发布
shell一键发布版内容到teek网站
版权
自己写的脚本。
环境
配置环境:
《Youbg Kbt》大佬开源的《vitepress-theme-teek》一个博客项目(知识库+博客 二合一),它是一个轻量、简易的VitePress主题框架,非常简约唯美,且也在持续迭代更新,感谢大佬开源的这款优秀产品,大佬威武。💖💖💖
背景
你想一键推送自己本地知识库更新内容到网站吗?
行的话,只需要粘贴执行以下脚本就好。😂
前提
- 具备Teek博客环境
- 有手就好
v1-本地安装
拉取仓库后在vscode里需要做的配置:
(1)拉取项目后,直接在vscode里执行如下代码就好:
bash
cat >>/etc/profile <<EOF
alias td="
sh -x /d/vitepress-theme-teek-one-private/shell/teek-run-dev.sh
"
EOF
cat >>/etc/profile <<EOF
alias tb="
sh -x /d/vitepress-theme-teek-one-private/shell/teek-run-build.sh
"
EOF
cat >>/etc/profile <<EOF
alias xyy="
sh -x /d/vitepress-theme-teek-one-private/shell/teek.sh
"
EOF
cat >>/etc/profile <<EOF
alias gs="
cd /d/vitepress-theme-teek-one-private/
git status
"
EOF
cat >>/etc/profile <<EOF
alias gp="
cd /d/vitepress-theme-teek-one-private/
git pull
"
EOF
cat >>/etc/profile <<EOF
alias gg="
cd /d/vitepress-theme-teek-one-private/
git status
git pull
git add -A
git commit -m'commit data'
git push
git status
"
EOF
source /etc/profile
(2)然后按需执行如下命令即可
bash
# 查看当前仓库状态
gs
# 拉取最新代码到本地
gp
# 推送本地代码到远程仓库
gg
# 一键发布更新内容到teeker网站
xyy
v2-在线安装
bash
cat >>/etc/profile <<EOF
alias td2="
sh -x /d/vitepress-theme-teek-online-install-one-private/shell/teek-run-dev.sh
"
EOF
cat >>/etc/profile <<EOF
alias tb2="
sh -x /d/vitepress-theme-teek-online-install-one-private/shell/teek-run-build.sh
"
EOF
cat >>/etc/profile <<EOF
alias xyy2="
sh -x /d/vitepress-theme-teek-online-install-one-private/shell/teek.sh
"
EOF
cat >>/etc/profile <<EOF
alias gs2="
cd /d/vitepress-theme-teek-online-install-one-private/
git status
"
EOF
cat >>/etc/profile <<EOF
alias gp2="
cd /d/vitepress-theme-teek-online-install-one-private/
git pull
"
EOF
cat >>/etc/profile <<EOF
alias gg2="
cd /d/vitepress-theme-teek-online-install-one-private/
git status
git pull
git add -A
git commit -m'commit data'
git push
git status
"
EOF
source /etc/profile
查看:
bash
# 查看当前仓库状态
gs2
# 拉取最新代码到本地
gp2
# 推送本地代码到远程仓库
gg2
# 一键发布更新内容到teeker网站
xyy2
v3-在线安装
bash
cat >>/etc/profile <<EOF
alias td="
sh -x /d/vitepress-theme-teek-one-private/shell/teek-run-dev.sh
"
EOF
cat >>/etc/profile <<EOF
alias tb="
sh -x /d/vitepress-theme-teek-one-private/shell/teek-run-build.sh
"
EOF
cat >>/etc/profile <<EOF
alias xyy="
sh -x /d/vitepress-theme-teek-one-private/shell/teek.sh
"
EOF
cat >>/etc/profile <<EOF
alias gs="
cd /d/vitepress-theme-teek-one-private/
git status
"
EOF
cat >>/etc/profile <<EOF
alias gp="
cd /d/vitepress-theme-teek-one-private/
git pull
"
EOF
cat >>/etc/profile <<EOF
alias gg="
cd /d/vitepress-theme-teek-one-private/
git status
git pull
git add -A
git commit -m'commit data'
git push
git status
"
EOF
source /etc/profile
查看:
bash
# 查看当前仓库状态
gs
# 拉取最新代码到本地
gp
# 推送本地代码到远程仓库
gg
# 一键发布更新内容到teeker网站
xyy
v4-2025.4.2-cnb.coll-成功测试版
bash
cat >>/etc/profile <<EOF
alias td="
sh -x /d/vitepress-theme-teek-one-private/shell/teek-run-dev.sh
"
EOF
cat >>/etc/profile <<EOF
alias tb="
sh -x /d/vitepress-theme-teek-one-private/shell/teek-run-build.sh
"
EOF
cat >>/etc/profile <<EOF
alias xyy="
sh -x /d/vitepress-theme-teek-one-private/shell/teek.sh
"
EOF
cat >>/etc/profile <<EOF
alias gs="
cd /d/vitepress-theme-teek-one-private/
git status
"
EOF
cat >>/etc/profile <<EOF
alias gp="
cd /d/vitepress-theme-teek-one-private/
git pull
"
EOF
cat >>/etc/profile <<EOF
alias gg="
cd /d/vitepress-theme-teek-one-private/
git status
git pull
git add -A
git commit -m'commit data'
git push
git status
"
EOF
cat >>/etc/profile <<EOF
alias gg2="
cd /d/vitepress-theme-teek-one-private/
git status
git pull
git add -A
git commit -m'BUILD'
git push
git status
"
EOF
source /etc/profile
查看:
bash
# 查看当前仓库状态
gs
# 拉取最新代码到本地
gp
# 推送本地代码到远程仓库
gg
# 一键发布更新内容到teeker网站
xyy