Git与GitHub

Git的安装和使用

  • 实验环境
    centos7
  • 优点
    分布式版本控制
    分支管理
  • 概念
    工作区:我们创建的工作目录。
    缓存区:git转交代码,解决冲突的中转站。
    本地git仓库:连接本地与远程git仓库的枢纽。
    远程git仓库:代码托管被托管在远程git仓库。如:GitHub
    分支:平行空间,git代码控制中在主分支上开辟的分支,托管在分支中的代码与主分支的代码互不影响,在代码开发完成以后,可与主分支合并在一起。
  • 安装
[root@server02 ~]# yum -y install git
[root@server02 ~]# git --version
git version 1.8.3.1
  • 用户身份设置
[root@server02 test_git]# git config --global user.name lzp
[root@server02 test_git]# git config --global user.email lzp@localhost.localdaemon
[root@server02 test_git]# git config --global color.ui true
[root@server02 test_git]# git config --list
user.name=lzp
user.email=lzp@localhost.localdaemon
color.ui=true
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
  • 创建,初始化一个本地git仓库
[root@server02 ~]# mkdir /test_git
[root@server02 ~]# cd /test_git/
[root@server02 test_git]# git init
[root@server02 test_git]# ll -a
total 0
drwxr-xr-x   3 root root  18 Dec 16 17:14 .
dr-xr-xr-x. 18 root root 240 Dec 16 17:12 ..
drwxr-xr-x   7 root root 119 Dec 16 17:14 .git
  • 代码提交过程

在工作区创建一个示例文本写入数据

[root@server02 test_git]# echo "hello" >> 1.txt
[root@server02 test_git]# ls
1.txt
[root@server02 test_git]# cat 1.txt 
hello

将文本提交至缓存区,查看状态。

[root@server02 test_git]# git add 1.txt
[root@server02 test_git]# git status
# On branch master
#
# Initial commit
#
# Changes to be committed:
#   (use "git rm --cached <file>..." to unstage)
#
#   new file:   1.txt
#

将缓存区文件提交到本地git仓库,提交后缓存区被清空。

[root@server02 test_git]# git commit -m "A new file 1.txt added"
[master (root-commit) 0d98c2a] A new file 1.txt added
 1 file changed, 1 insertion(+)
 create mode 100644 1.txt

[root@server02 test_git]# git status
# On branch master
nothing to commit, working directory clean
  • 将工作区的文件修改,对比和本地git仓库的不同,确认无误后,方可提交。
[root@server02 test_git]# cat 1.txt 
hello
[root@server02 test_git]# echo "world" >> 1.txt 
[root@server02 test_git]# cat 1.txt 
hello
world

git status 查看当前状态
[root@server02 test_git]# git status
# On branch master
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#   modified:   1.txt
#
no changes added to commit (use "git add" and/or "git commit -a")

git diff 查看有哪些改变
[root@server02 test_git]# git diff 1.txt
diff --git a/1.txt b/1.txt
index ce01362..94954ab 100644
--- a/1.txt
+++ b/1.txt
@@ -1 +1,2 @@
 hello
+world

提交两步
[root@server02 test_git]# git add 1.txt
[root@server02 test_git]# git commit -m "Modefied 1.txt add world"
[master 68d9eb4] Modefied 1.txt add world
 1 file changed, 1 insertion(+)
[root@server02 test_git]# git status
# On branch master
nothing to commit, working directory clean
  • 版本回退

查看历史记录

[root@server02 test_git]# git log
commit 68d9eb403c11897d4bab540c40366a6ec714fba1
Author: lzp <lzp@local.localdaemon>
Date:   Sun Dec 16 17:48:11 2018 +0800
    Modefied 1.txt add world

commit 0d98c2a91197a95504f5d059bbb325680a8f5457
Author: lzp <lzp@local.localdaemon>
Date:   Sun Dec 16 17:34:34 2018 +0800
    A new file 1.txt added

较简洁的显示
[root@server02 test_git]# git log --pretty=oneline 
68d9eb403c11897d4bab540c40366a6ec714fba1 Modefied 1.txt add world
0d98c2a91197a95504f5d059bbb325680a8f5457 A new file 1.txt added

方法一:

回退到上一个版本:
[root@server02 test_git]# git reset --hard HEAD^
HEAD is now at 0d98c2a A new file 1.txt added
[root@server02 test_git]# cat 1.txt 
hello

回退到前面的几个版本就几个^

方法二:

[root@server02 test_git]# cat 1.txt 
hello
world
[root@server02 test_git]# git log --pretty=oneline 
68d9eb403c11897d4bab540c40366a6ec714fba1 Modefied 1.txt add world
0d98c2a91197a95504f5d059bbb325680a8f5457 A new file 1.txt added

回退到第一个版本
[root@server02 test_git]# git reset --hard HEAD~1
HEAD is now at 0d98c2a A new file 1.txt added
[root@server02 test_git]# cat 1.txt 
hello

方法三:
可以回到任意版本

查看所有操作历史,第一列就是版本号
[root@server02 test_git]# git reflog 
0d98c2a HEAD@{0}: reset: moving to HEAD~1
68d9eb4 HEAD@{1}: reset: moving to 68d9eb4
0d98c2a HEAD@{2}: reset: moving to HEAD^
68d9eb4 HEAD@{3}: commit: Modefied 1.txt add world
0d98c2a HEAD@{4}: commit (initial): A new file 1.txt added

通过版本号来回退
[root@server02 test_git]# git reset --hard 0d98c2a
HEAD is now at 0d98c2a A new file 1.txt added
[root@server02 test_git]# cat 1.txt 
hello
  • 撤销修改和删除文件

只能撤销工作区的修改操作

对1.txt做修改
[root@server02 test_git]# cat 1.txt 
hello
[root@server02 test_git]# echo "hahahha" >> 1.txt 
[root@server02 test_git]# cat 1.txt 
hello
hahahha

查看状态
[root@server02 test_git]# git status
# On branch master
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#   modified:   1.txt
#
no changes added to commit (use "git add" and/or "git commit -a")

撤销这个修改再查看
[root@server02 test_git]# git checkout -- 1.txt
[root@server02 test_git]# cat 1.txt 
hello
[root@server02 test_git]# git status
# On branch master
nothing to commit, working directory clean

将文件删除

[root@server02 test_git]# git rm 1.txt
rm '1.txt'
[root@server02 test_git]# ls
[root@server02 test_git]# git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#   deleted:    1.txt
#
  • git分支相关操作

创建一个分支,命名为add。并查看当前分支信息。

[root@server02 test_git]# git branch add

[root@server02 test_git]# git branch
  add
* master              *号表示当前处于主分支中

分支切换

[root@server02 test_git]# git checkout add 
Switched to branch 'add'
[root@server02 test_git]# git branch
* add
  master

在add分支中创建文件并提交至本地git仓库

[root@server02 test_git]# echo "nnnnmmmmddd" >> 99.txt
[root@server02 test_git]# ls
1.txt  99.txt
[root@server02 test_git]# git add 99.txt
[root@server02 test_git]# git commit -m "add add 99.txt"
[add 8115400] add add 99.txt
 1 file changed, 1 insertion(+)
 create mode 100644 99.txt

切换到master分支查看,add分支中的数据对master分支没有影响

[root@server02 test_git]# git checkout master 
Switched to branch 'master'
[root@server02 test_git]# ls
1.txt

合并分支

当前处于master分支
[root@server02 test_git]# git branch 
  add
* master

与add分支合并
[root@server02 test_git]# git merge add
Updating 68d9eb4..8115400
Fast-forward
 99.txt | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 99.txt

查看
[root@server02 test_git]# ls
1.txt  99.txt
  • 版本冲突

当多人同时操作同一文件时容易发生版本冲突,例如,我们在master分支和add分支中同时创建88.txt并写入不同数据,然后进行合并分支操作。

在master分支中
[root@server02 test_git]# git branch 
  add
* master
[root@server02 test_git]# echo "master" >> 88.txt
[root@server02 test_git]# git add 88.txt
[root@server02 test_git]# git commit -m "master add 88.txt"
[master fb50d41] master add 88.txt
 1 file changed, 1 insertion(+)
 create mode 100644 88.txt

在add分支中
[root@server02 test_git]# git checkout add 
Switched to branch 'add'
[root@server02 test_git]# git branch 
* add
  master
[root@server02 test_git]# echo "add" >> 88.txt
[root@server02 test_git]# git add 88.txt
[root@server02 test_git]# git commit -m "add 88.txt"
[add 96416d3] add 88.txt
 1 file changed, 1 insertion(+)
 create mode 100644 88.txt

切换到master进行合并操作
[root@server02 test_git]# git checkout master
Switched to branch 'master'
[root@server02 test_git]# ls
1.txt  88.txt  99.txt
[root@server02 test_git]# git branch 
  add
* master
[root@server02 test_git]# git merge add
Auto-merging 88.txt
CONFLICT (add/add): Merge conflict in 88.txt
Automatic merge failed; fix conflicts and then commit the result.

查看88.txt的内容
[root@server02 test_git]# cat 88.txt 
<<<<<<< HEAD
master
=======
add
>>>>>>> add

解决冲突,将冲突部分做修改

[root@server02 test_git]# sed -ie '/^[^a-z]/d' 88.txt
[root@server02 test_git]# cat 88.txt
master
add

提交

[root@server02 test_git]# git add 88.txt
[root@server02 test_git]# git commit -m "modified 88.txt ok"
  • 删除分支
    注意:在master中删除其他分支,否则会失败。
[root@server02 test_git]# git branch 
  add
* master
[root@server02 test_git]# git branch -d add
Deleted branch add (was 96416d3).
[root@server02 test_git]# git branch 
* master

GitHub

  • 注册GitHub账户
    注册.png

    注册2.png

    注册3.png

    注册4.png

    注册5.png

    注册6.png

    注册7.png
  • 创建项目库


    创建项目库.png

    创建项目库2.png

    创建项目库3.png
  • Git本地仓库与GitHub远程仓库关联

获取克隆地址


克隆地址.png

创建目录来克隆

[root@server02 /]# mkdir /test
[root@server02 /]# cd /test
[root@server02 test]# ls

[root@server02 test]# git clone https://github.com/LiZhipen/test.git
Cloning into 'test'...
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
[root@server02 test]# ls
test
[root@server02 test]# cd test/
[root@server02 test]# ls
README.md

提交一个项目文件

创建文件,提交到本地git仓库
[root@server02 test]# echo "hello world" >> index.php
[root@server02 test]# ls
index.php  README.md
[root@server02 test]# git add index.php
[root@server02 test]# git commit -m "create index.php file"
[master 562e59a] create index.php file
 1 file changed, 1 insertion(+)
 create mode 100644 index.php

推到远程git库


推.png

推2.png
  • 每次输入账户和密码不免麻烦,通过ssh免密来解决

生成密钥对


生成秘钥.png

复制公钥

[root@server02 test]# cat /root/.ssh/id_rsa.pub 
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDzERJR8EdnR+OMdVAZ2H0dKuS0pm30/8n50C3e037RnKwfQNTJdPZ8ghrlRBDMD0hsem0vIqe5TYYqW/nJVzdLk9rXvrjzTL8v4nx+NgSbPIC6KPCtsEIVYSpeqnKmnLYs/zULiiDASKFe2quEDb/kejrj3DUfBNHwSCbAMrP8ND81JUZm2X99EUx1zi1G8PD4/yY8mo3P0iZN+TgiOo/uQW0irSJ3VMxYRI3zhTwifE20hndrvlozfVbg2d2H/eZNh8D62NEjIS5haPhSxDrs8ygczXWntc0iYxXjJ/RjpZFCxTr55xvijqusjqRWSaDUsc0PlYWoRM7pFLljEft7 392711464@qq.com
[root@server02 test]# 

粘贴到GitHub


设置.png

shez2.png

shez3.png

设置4.png

选择ssh方式来克隆和推代码


ssh1.png

ssh2.png

测试
ssh3.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,530评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,403评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,120评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,770评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,758评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,649评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,021评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,675评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,931评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,751评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,410评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,004评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,969评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,042评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,493评论 2 343

推荐阅读更多精彩内容

  • 版本控制系统 为什么要有版本控制系统 通过注册与登录的需求引入版本控制系统 在开发过程中,经常需要对一个文件进行修...
    隔壁老王z阅读 295评论 0 0
  • Git 基础 基本原理 客户端并不是只提取最新版本的文件快照,而是把代码仓库完整的镜像下来。这样一来,任何一处协同...
    __silhouette阅读 15,855评论 5 147
  • Git 命令行学习笔记 Git 基础 基本原理 客户端并不是只提取最新版本的文件快照,而是把代码仓库完整的镜像下来...
    sunnyghx阅读 3,902评论 0 11
  • “乔木然,我们分手吧!”苏悦手中拿着一份报纸,丢在桌子上,点燃了一根烟。 “你什么时候会抽烟?”乔木然打开窗子...
    鹿辰阅读 274评论 0 0