GitHub使用教程——(1)使用GitHub建立簡歷展現頁


"若是我比別人看得遠,那是由於我站在巨人的肩膀上"css

這是加利利的第一篇文章html

系統環境:CentOS6.6桌面版jquery

工具:VNCXshellgit

流程:github

     建立倉庫位置——初始化倉庫——配置用戶名及郵箱——下載簡歷模板——編輯簡歷——GitHub上建立倉庫——上傳本地代碼到遠程倉庫——使用託管源——完成shell


action!vim


建立倉庫位置:centos

[root@centos66 ~]# mkdir -p Code/CV
[root@centos66 ~]# cd Code/CV/

初始化倉庫:
bash

[root@centos66 CV]# git init                                    #初始化倉庫
Reinitialized existing Git repository in/root/Code/CV/.git/

用戶名及郵箱配置:app

[root@centos66 CV]# git config --globaluser.name "userlx"
[root@centos66 CV]# git config --global user.email"15210680512@163.com"

下載簡歷模板:

[root@centos66 CV]# wget http://labfile.oss.aliyuncs.com/courses/624/cv-template.zip

編輯簡歷:

[root@centos66 CV]# unzip cv-template.zip
[root@centos66 CV]# mv cv-template/*.
[root@centos66 CV]# rm -rf cv-template*  __MACOSX*

[root@centos66 CV]#firefox index.html        #在VNC控制檯打開 Xshell中打開會報錯

修改簡歷,就是在網頁上能夠直接更改的,可是,,,這系統的輸入法特別的很差用,我就只更改了幾項內容;

wKiom1mJdguxH9XIAAPER_v4A1Q275.png-wh_50

#修改完,而後就Ctrl+s保存網頁

wKiom1mJdg2SIEEQAAGnxge0W9k063.png-wh_50


建立倉庫:

wKiom1mJbwjz1rCaAADs2cvQk08028.png-wh_50

#輸入倉庫名稱——建立倉庫(默認設置爲公有,私有是收費的)

wKiom1mJbwfQ3U57AAEjTN7Ar78014.png-wh_50

#建立完成後能夠看到提示操做

    快速設置-若是你以前作過相似的事情

    或者在命令行上建立一個新的存儲庫

    或者從命令行中推進現有的存儲庫

英語很差的朋友能夠像我同樣有道翻譯;但翻譯後必定要對應着學習一下!

OK!下一步!


上傳本地代碼到遠程倉庫:

[root@centos66 CV]# git add .                          #將全部修改過的工做文件提交暫存區
[root@centos66 CV]# git commit -m"first commit"        #添加備註first commit
[master (root-commit) cacc967] first commit
 26files changed, 2286 insertions(+), 0 deletions(-)
 create mode 100644 index.html
 create mode 100644 static/.DS_Store
 create mode 100644 static/css/.DS_Store
 create mode 100644 static/css/style.css
 create mode 100644 static/fonts/.DS_Store
 create mode 100644 static/fonts/demo.css
 createmode 100644 static/fonts/demo.html
 create mode 100644 static/fonts/iconfont.css
 create mode 100644 static/fonts/iconfont.eot
 create mode 100644 static/fonts/iconfont.svg
 create mode 100644 static/fonts/iconfont.ttf
 create mode 100644 static/fonts/iconfont.woff
 create mode 100644 static/p_w_picpath/.DS_Store
 create mode 100755 static/p_w_picpath/bg.jpg
 create mode 100644 static/p_w_picpath/weixin.png
 create mode 100644 static/js/.DS_Store
 create mode 100644 static/js/modal.js
 createmode 100644 static/js/script.js
 create mode 100644"\347\256\200\345\216\206\347\224\237\346\210\220\345\231\250.html"
 create mode 100644"\347\256\200\345\216\206\347\224\237\346\210\220\345\231\250_files/jquery.js"
 create mode 100644 "\347\256\200\345\216\206\347\224\237\346\210\220\345\231\250_files/remodal-default-theme.css"
 create mode 100644"\347\256\200\345\216\206\347\224\237\346\210\220\345\231\250_files/remodal.css"
 create mode 100644"\347\256\200\345\216\206\347\224\237\346\210\220\345\231\250_files/remodal.js"
 create mode 100644"\347\256\200\345\216\206\347\224\237\346\210\220\345\231\250_files/script.js"
 create mode 100644"\347\256\200\345\216\206\347\224\237\346\210\220\345\231\250_files/style.css"
 create mode 100644 "\347\256\200\345\216\206\347\224\237\346\210\220\345\231\250_files/weixin.png"
[root@centos66 CV]# git config --globaluser.name "userlx"                 #配置github用戶
[root@centos66 CV]# git config --globaluser.email "15210680512@163.com"   #配置github郵箱
[root@centos66 CV]# git remote add orgin https://github.com/userlx/resume.git                                                                      #設置遠程倉庫地址,地址在上圖中
[root@centos66 CV]# git push -u origin master             #推送到遠程倉庫
fatal: 'origin' does not appear to be a gitrepository
fatal: The remote end hung up unexpectedly                #報錯
[root@centos66 CV]# git remote add orgin https://github.com/userlx/resume                                                                          #更換遠程倉庫地址
fatal: remote origin already exists.                      #提示遠程倉庫已存在
[root@centos66 CV]# git remote rm origin                  #刪除遠程倉庫
[root@centos66 CV]# git remote add orgin 
                                                          #從新設置遠程倉庫地址 
[root@centos66 CV]# git push -u origin master             #再次推送到遠程倉庫 
 error: The requested URL returned error:403 Forbidden while accessing https://github.com/userlx/resume.git/info/refs                              #報錯!提示請求失敗
fatal: HTTP request failed

[root@centos66 CV]#vim .git/config                        #更改git配置文件
[core]
       repositoryformatversion = 0
       filemode = true
       bare = false
       logallrefupdates = true
[remote "orgin"]
       url = https://github.com/userlx/resume.git
       fetch = +refs/heads/*:refs/remotes/orgin/*

       url = https://github.com/userlx/resume.git
       改成:
       url = https://userlx@github.com/userlx/resume.git 
[root@centos66 CV]# git push -u originmaster                #再再次推送到遠程倉庫 
(gnome-ssh-askpass:46184): Gtk-WARNING **:cannot open display:    #cannot open display

#我是用xshell打開的,因此會顯示cannot open display;因而就改用VNC,以下:

wKiom1mJc_TRyTpDAACEK5D2YIA579.jpg-wh_50

#提示輸入密碼(GitHub密碼)

wKiom1mJc_TB6FRRAAD5ieg43ag718.png-wh_50


使用託管源:

wKiom1mJdJKCV224AAFZcu_Smyg673.jpg-wh_50

#選擇Settings——向下拉 找到GitHub Pags

wKioL1mJdJPjHPCVAACuoBAUarw051.jpg-wh_50

#選擇master branch——save

wKiom1mJdJPD5TeyAAB05GgwlXc719.png-wh_50


Congratulation! Your site is published at https://userlx.github.io/resume/

之後就能夠訪問userlx.github.io/resume了!

就是這麼簡單,可是!作以前先別急着敲命令,先知曉流程,理清思路,明白命令,以後再下手作;一定事半功倍!共勉··


另外一個問題:個人簡歷好像還沒改完整呢?

遠程或者虛擬機上都不方便改,那就在本身電腦上改!下載個github客戶端,就能夠在本地直接打開隨意操做;純圖形化操做,再也不贅述;

wKiom1mJeEiQ03xnAAFeTyO-HeA091.png-wh_50


拓展:Git知識點不少,GitHub很強大,該篇博客講的知識九牛一毛;

    git講解:廖雪峯講git

    git命令:那個誰的博客

    VNC的使用就不說了吧

相關文章
相關標籤/搜索