Github Pages 是Github的静态页面托管服务,它设计的初衷是为了用户能够直接通过Github仓库来托管用户个人,组织或者项目的专属页面
初始化Git目录
创建并且进入一个文件,然后执行下面的命令:
git init
git config --global user.name "你的用户名"
git config --global user.email "你的邮箱地址"
下载简历模板
在自己的github上创建resume仓库
echo "# resume" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/codermokeywang/resume.git
git push -u origin main
将最后两端代码复制下来
提交简历文档
首先在本地提交简历文档
git add .
git commit -m 'commit my resume
然后将文档上传到github上
git remote add origin https://github.com/codermokeywang/resume.git
git push -u origin main
在resume仓库页面点击Settings
选择到GitHub Pages
将pages的源设置为main
访问https://*****.github.io/resume/即可看到自己的简历
****为自己的用户名
将网址变成二维码
选择一个二维码生成器,将自己的网址输入