将github默认主页重定向到自己的页面可以通过以下步骤实现:
name: Redirect
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Redirect to personal page
run: |
echo '<meta http-equiv="refresh" content="0; url=https://your-username.github.io">' > index.html
git config --global user.name 'Your Name'
git config --global user.email 'your-email@example.com'
git add index.html
git commit -m 'Redirect to personal page'
git push
请将上述代码中的"https://your-username.github.io"替换为你的个人页面的网址。
现在,当访问你的GitHub默认主页时,将会自动重定向到你的个人页面。请注意,这个重定向可能需要几分钟的时间才能生效。
领取专属 10元无门槛券
手把手带您无忧上云