GitHub使用教程——(1)使用GitHub创建简历展示页

"如果我比别人看得远,那是因为我站在巨人的肩膀上"

这是加利利的第一篇文章

系统环境:CentOS6.6桌面版

工具:VNC及Xshell

流程:

创建仓库位置——初始化仓库——配置用户名及邮箱——下载简历模板——编辑简历——GitHub上创建仓库——上传本地代码到远程仓库——使用托管源——完成

action!


创建仓库位置:

[[email protected] ~]# mkdir -p Code/CV
[[email protected] ~]# cd Code/CV/

初始化仓库:

[[email protected] CV]# git init                                    #初始化仓库
Reinitialized existing Git repository in/root/Code/CV/.git/

用户名及邮箱配置:

[[email protected] CV]# git config --globaluser.name "userlx"
[[email protected] CV]# git config --global user.email"[email protected]"

下载简历模板:

[[email protected] CV]# wget http://labfile.oss.aliyuncs.com/courses/624/cv-template.zip

编辑简历:

[[email protected] CV]# unzip cv-template.zip
[[email protected] CV]# mv cv-template/*.
[[email protected] CV]# rm -rf cv-template*  __MACOSX*

[[email protected] CV]#firefox index.html        #在VNC控制台打开 Xshell中打开会报错

修改简历,就是在网页上可以直接更改的,但是,,,这系统的输入法特别的不好用,我就只更改了几项内容;

#修改完,然后就Ctrl+s保存网页

创建仓库:

#输入仓库名称——创建仓库(默认设置为公有,私有是收费的)

#创建完成后可以看到提示操作

快速设置-如果你之前做过类似的事情

或者在命令行上创建一个新的存储库

或者从命令行中推动现有的存储库

英语不好的朋友可以像我一样有道翻译;但翻译后一定要对应着学习一下!

OK!下一步!

上传本地代码到远程仓库:

[[email protected] CV]# git add .                          #将所有修改过的工作文件提交暂存区
[[email protected] 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/image/.DS_Store
 create mode 100755 static/image/bg.jpg
 create mode 100644 static/image/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"
[[email protected] CV]# git config --globaluser.name "userlx"                 #配置github用户
[[email protected] CV]# git config --globaluser.email "[email protected]"   #配置github邮箱
[[email protected] CV]# git remote add orgin https://github.com/userlx/resume.git                                                                      #设置远程仓库地址,地址在上图中
[[email protected] CV]# git push -u origin master             #推送到远程仓库
fatal: ‘origin‘ does not appear to be a gitrepository
fatal: The remote end hung up unexpectedly                #报错
[[email protected] CV]# git remote add orgin https://github.com/userlx/resume                                                                          #更换远程仓库地址
fatal: remote origin already exists.                      #提示远程仓库已存在
[[email protected] CV]# git remote rm origin                  #删除远程仓库
[[email protected] CV]# git remote add orgin 
                                                          #重新设置远程仓库地址 
[[email protected] 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

[[email protected] 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://[email protected]/userlx/resume.git 
[[email protected] CV]# git push -u originmaster                #再再次推送到远程仓库 
(gnome-ssh-askpass:46184): Gtk-WARNING **:cannot open display:    #cannot open display

#我是用xshell打开的,所以会显示cannot open display;于是就改用VNC,如下:

#提示输入密码(GitHub密码)

使用托管源:

#选择Settings——向下拉 找到GitHub Pags

#选择master branch——save

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

以后就可以访问userlx.github.io/resume了!

就是这么简单,但是!做之前先别急着敲命令,先知晓流程,理清思路,明白命令,之后再下手做;必定事半功倍!共勉··

另一个问题:我的简历好像还没改完整呢?

远程或者虚拟机上都不方便改,那就在自己电脑上改!下载个github客户端,就可以在本地直接打开随意操作;纯图形化操作,不再赘述;

拓展:Git知识点很多,GitHub很强大,该篇博客讲的知识九牛一毛;

git讲解:廖雪峰讲git

git命令:那个谁的博客

VNC的使用就不说了吧

时间: 2024-10-12 23:27:16

GitHub使用教程——(1)使用GitHub创建简历展示页的相关文章

Github实例教程-创建库、创建主页

以README文件为实例,详细介绍github的使用过程 请先下载git,然后配置以下内容: ( 我的系统是debian,其他版本的UNIX/Linux有差别),windows的暂时不清楚. (一) 1.先下载git $ apt-get install git-core 2.创建git用户名(Username),首先你要告诉git你的名字,这样它才能正确的给你提交的的东西打上标签. (First you need to tell git your name, so that it can pro

文科妹学 GitHub 简易教程

#什么是 Github ?必须要放这张图了!!!<img src="https://pic4.zhimg.com/7c9d3403bf922b1663f56975869c829b_b.png" data-rawwidth="600" data-rawheight="412" class="origin_image zh-lightbox-thumb" width="600" data-original

文科妹学 GitHub 简易教程(转)

#什么是 Github ?必须要放这张图了!!! Git 是由 Linux 之父 Linus Tovalds 为了更好地管理linux内核开发而创立的分布式版本控制/软件配置管理软件. 好吧,我相信看到这里你已经晕了,这也是我一开始看那些所谓经典教程的感受.写这些教程的人都是几年以上的程序员呀,他们往往直接就告诉你所有命令的含义或者整个体系. 专家盲点(expert blind spot)就是对一个事物知道的越多,就越发不记得"不知道这个事"的情形. 简单来说,Git 是一个管理你的「

GitHub使用教程

Step1: 在GitHub上创建一个测试用的项目:https://github.com/JOJOZHANGJU/testgithub.git 这个项目已经在github.com上创建好,名字叫做testgithub.git Step2: 转到自己的工作目录: 例如:githabtest 注:最好勾选上初始化一个readme文件 cd githabtest/ Step3: 创建并下载相关项目: git clone [email protected]:JOJOZHANGJU/test.git 可能

github使用教程:(一)

1.注册账户以及创建仓库 要想使用github第一步当然是注册github账号了.之后就可以创建仓库了(免费用户只能建公共仓库),Create a New Repository,填好名称后Create,之后会出现一些仓库的配置信息,这也是一个git的简单教程.千万记住账号邮箱与密码. 2.安装客户端msysgit github是服务端,要想在自己电脑上使用git我们还需要一个git客户端,我这里选用msysgit,这个只是提供了git的核心功能,而且是基于命令行的.如果想要图形界面的话只要在ms

GitHub具体教程

GitHub具体教程 Table of Contents 1 Git具体教程 1.1 Git简单介绍 1.1.1 Git是何方神圣? 1.1.2 重要的术语 1.1.3 索引 1.2 Git安装 1.3 Git配置 1.3.1 用户信息 1.3.2 高亮显示 1.3.3 忽略特定的文件 1.3.4 使用.gitkeep来追踪空的目录 1.4 開始操作Git 1.4.1 创建内容 1.4.2 创建仓库.加入文件和提交更改 1.4.3 diff命令与commit更改 1.4.4 Status, Di

GitHub使用教程(转自http://www.cnblogs.com/keke2014/p/3855981.html)

github(https://github.com)是一个基于git的代码托管平台,付费用户可以建私人仓库,我们一般的免费用户只能使用公共仓库,也就是代码要公开.对于一般人来说公共仓库就已经足够了,而且我们也没多少代码来管理,O(∩_∩)O~.下面是我总结的一些简单使用方法,供初学者参考. 1.注册账户以及创建仓库 要想使用github第一步当然是注册github账号了.之后就可以创建仓库了(免费用户只能建公共仓库),Create a New Repository,填好名称后Create,之后会

Git和Github简单教程

网络上关于Git和GitHub的教程不少,但是这些教程有的命令太少不够用,有的命令太多,使得初期学习的时候需要额外花不少时间在一些当前用不到的命令上.这篇文章主要的目标是用较少的时间学习Git和GitHub的基本使用.在足够一般使用的前提下,尽量减少命令.如果需要其他命令,到时候再去其他地方了解就行了. 目录: 零.Git是什么 一.Git的主要功能:版本控制 二.概览 三.Git for Windows软件安装 四.本地Git的使用 五.Github与Git的关联 六.团队合作开发 七.Git

Github使用教程(二)------ Github客户端使用方法

在上一篇教程中,我们简单介绍了Github网站的各个部分,相信大家对Github网站也有了一个初步的了解(/(ㄒoㄒ)/~~可是还是不会用怎么办),不要着急,我们今天先讲解一下Github for windows(客户端)的使用方法,之后我们会以一个实例一步一步的来讲解Github. Github for windows(客户端)是什么 GitHub 使用 git 分布式版本控制系统,而 git 最初是 Linus Torvalds 为帮助Linux开发而创造的,它针对的是 Linux 平台,因