而後按照如下輸入指令:html
$ mkdir resume && cd resume ;;建立一個目錄來操做
$ git init ;;建立一個git庫
$ git config --global user.name "your name" ;;建立庫的ownner,可選(這個能夠先不填)
$ git config --global user.email "your email" ;;建立庫的ownner 的email聯繫方式,可選(這個也能夠先不填)linux
$ wget http://labfile.oss.aliyuncs.com/courses/624/cv-template.zip ;;下載模板簡歷
$ unzip cv-template
$ mv cv-template/* .
$ rm -rf cv-template* __MACOSX*
————————————————git
(以火狐爲例)打開菜單(右上角)-->開發者(Web Devlopment)-->查看器(Insert...),將鼠標點中<html>標籤,點擊右鍵,找到 複製(Copy)外部HTML(outer...) ,github
單擊它,建立一個新文件index.html,粘貼複製的內容,替換掉原來的index.html文件瀏覽器
$ git add .
;;追蹤resume目錄下的全部文件
$ git commit -m 'myintroduce'
;;提交文件到本地倉庫,-m是指定這次提交的message信息,本身改寫
$ git remote add origin + 遠程倉庫地址
;;遠程倉庫地址,在建立好空的庫時能夠看見,圖中的https://lzb-james.github.io/myintroduce/
$ git push -u origin master ;;提交到遠程操做spa
頁面就這樣部署好啦! 感興趣的小夥伴快去試試吧!!!!https://lzb-james.github.io/myintroduce/#3d