学习笔记-01

原视频

版本控制介绍

集中式版本控制
  • 问题:单点故障
分布式版本控制

Git安装

video


Git结构

image.png

Git和代码托管中心

代码托管中心的任务:维护远程库

  • 局域网环境下
    • GitLab服务器
  • 外网环境下
    • Github
    • 码云

本地库和远程库

image.png

image.png

Git命令行操作

  1. 本地库初始化
  • 命令:git init
  • 注意:.git目录中存放的是本地库相关的子目录和文件,不要删除,也不要胡乱修改。
lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace
$ mkdir EmptyDemo

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace
$ cd EmptyDemo/

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo
$ git init
Initialized empty Git repository in E:/IdeaProjects/workspace/EmptyDemo/.git/

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ ll .git/
total 7
-rw-r--r-- 1 lenovo 197609 130 7月   1 10:06 config
-rw-r--r-- 1 lenovo 197609  73 7月   1 10:06 description
-rw-r--r-- 1 lenovo 197609  23 7月   1 10:06 HEAD
drwxr-xr-x 1 lenovo 197609   0 7月   1 10:06 hooks/
drwxr-xr-x 1 lenovo 197609   0 7月   1 10:06 info/
drwxr-xr-x 1 lenovo 197609   0 7月   1 10:06 objects/
drwxr-xr-x 1 lenovo 197609   0 7月   1 10:06 refs/
  1. 设置签名
  • 形式
    • 用户名
    • Email地址
  • 作用:区分不同开发人员的身份
  • 辨析:这里设置的签名和登陆远程库(代码托管中心)的账号、密码没有任何关系。
  • 命令
    • 项目级别/仓库级别:仅在当前本地库范围内有效
    • 系统用户级别:登陆当前操作系统的用户范围
    • 级别优先级
      • 就近原则:项目级别优先于系统用户级别,二者都有时采用项目级别的签名
      • 如果只有系统用户级别的签名,就以系统用户级别的签名为准
      • 二者都没有是不允许的
lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git config user.name mrwang

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git config user.email goodMorning_MrWang@example.com

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ cat .git/config
[core]
        repositoryformatversion = 0
        filemode = false
        bare = false
        logallrefupdates = true
        symlinks = false
        ignorecase = true
[user]
        name = mrwang
        email = goodMorning_MrWang@example.com

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git config --global user.name mrwang

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git config --global user.email goodMorning_MrWang@example.com

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ cd ~

lenovo@Maximus-PC MINGW64 ~
$ pwd
/c/Users/lenovo

lenovo@Maximus-PC MINGW64 ~
$ ls -lA |grep git
-rw-r--r-- 1 lenovo 197609      153 7月   1 11:12 .gitconfig

lenovo@Maximus-PC MINGW64 ~
$ cat .gitconfig
[user]
        name = mrwang
        email = goodMorning_MrWang@example.com
[core]
        autocrlf = true
        excludesfile = C:\\Users\\lenovo\\Documents\\gitignore_global.txt

添加提交以及查看状态操作

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git status
On branch master

No commits yet

nothing to commit (create/copy files and use "git add" to track)

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ vim good.txt

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git status
On branch master

No commits yet

Untracked files:
  (use "git add <file>..." to include in what will be committed)

        good.txt

nothing added to commit but untracked files present (use "git add" to track)

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git add good.txt
warning: LF will be replaced by CRLF in good.txt.
The file will have its original line endings in your working directory.

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git status
On branch master

No commits yet

Changes to be committed:
  (use "git rm --cached <file>..." to unstage)

        new file:   good.txt


lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git rm --cached good.txt
rm 'good.txt'

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git status
On branch master

No commits yet

Untracked files:
  (use "git add <file>..." to include in what will be committed)

        good.txt

nothing added to commit but untracked files present (use "git add" to track)

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ ll
total 1
-rw-r--r-- 1 lenovo 197609 24 7月   2 08:04 good.txt

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git add good.txt
warning: LF will be replaced by CRLF in good.txt.
The file will have its original line endings in your working directory.

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git status
On branch master

No commits yet

Changes to be committed:
  (use "git rm --cached <file>..." to unstage)

        new file:   good.txt


lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git commit good.txt
warning: LF will be replaced by CRLF in good.txt.
The file will have its original line endings in your working directory.
[master (root-commit) 488d18f] My first commit. New file good.txt.
 1 file changed, 3 insertions(+)
 create mode 100644 good.txt

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git status
On branch master
nothing to commit, working tree clean

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ vim good.txt

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ 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:   good.txt

no changes added to commit (use "git add" and/or "git commit -a")

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git add good.txt
warning: LF will be replaced by CRLF in good.txt.
The file will have its original line endings in your working directory.

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git status
On branch master
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

        modified:   good.txt


lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git commit -m "My second commit, modify good.txt" good.txt
warning: LF will be replaced by CRLF in good.txt.
The file will have its original line endings in your working directory.
[master 7752881] My second commit, modify good.txt
 1 file changed, 1 insertion(+)

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$
版本穿梭

查看历史记录的几种方式

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git log
commit 91e905998a46c668b511925aa493e4b957b8b69c (HEAD -> master)
Author: mrwang <goodMorning_MrWang@example.com>
Date:   Mon Jul 2 09:30:01 2018 +0800

    insert fffffff edit

commit 594e334173b17a770bbeaf60239a9d70241cc783
Author: mrwang <goodMorning_MrWang@example.com>
Date:   Mon Jul 2 09:29:25 2018 +0800

    insert eeeeeee edit

commit b2025ce2431e90faefd3bc474b5033151f573516
Author: mrwang <goodMorning_MrWang@example.com>
Date:   Mon Jul 2 09:24:06 2018 +0800

    for test history

commit 77528812922c4c114db3aec3b0a33b709a7c3ae0
Author: mrwang <goodMorning_MrWang@example.com>
Date:   Mon Jul 2 09:13:35 2018 +0800

    My second commit, modify good.txt

commit 488d18f388b275815b934402fca31e4a51143c56
Author: mrwang <goodMorning_MrWang@example.com>
Date:   Mon Jul 2 08:55:07 2018 +0800

    My first commit. New file good.txt.

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git log --pretty=oneline
91e905998a46c668b511925aa493e4b957b8b69c (HEAD -> master) insert fffffff edit
594e334173b17a770bbeaf60239a9d70241cc783 insert eeeeeee edit
b2025ce2431e90faefd3bc474b5033151f573516 for test history
77528812922c4c114db3aec3b0a33b709a7c3ae0 My second commit, modify good.txt
488d18f388b275815b934402fca31e4a51143c56 My first commit. New file good.txt.

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git log --oneline
91e9059 (HEAD -> master) insert fffffff edit
594e334 insert eeeeeee edit
b2025ce for test history
7752881 My second commit, modify good.txt
488d18f My first commit. New file good.txt.

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git reflog
91e9059 (HEAD -> master) HEAD@{0}: commit: insert fffffff edit
594e334 HEAD@{1}: commit: insert eeeeeee edit
b2025ce HEAD@{2}: commit: for test history
7752881 HEAD@{3}: commit: My second commit, modify good.txt
488d18f HEAD@{4}: commit (initial): My first commit. New file good.txt.

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$

版本前进后退

  • 本质


    image.png
  • 基于索引值操作[推荐]
    • git reset --hard [局部索引值]
    • 例如:git reset --hard a6ace91
  • 使用^符号:只能后退
    • git reset --hard HEAD^
    • 注:一个^表示后退一步,^^表示后退两步,n个^表示后退n步
  • 使用~符号:只能后退
    • git reset --hard HEAD~n
    • 注:表示后退n步

基本操作

  1. 状态查看操作
    git status
    查看工作区、暂存区状态
  2. 添加操作
    git add [file]
    将工作区的“新建/修改”添加到暂存区
  3. 提交操作
    git commit -m "commit message" [file]
    将暂存区的内容提交到本地库
  4. 查看历史记录
    git log log多屏显示控制方式:空格 -> 向下翻页,b -> 向上翻页,q -> 退出
    git log --pretty=oneline
    git log --oneline
    git reflog HEAD@{移动到当前版本需要多少步}
  5. 版本前进后退
  • 基于索引值操作[推荐]
    • git reset --hard [局部索引值]
    • 例如:git reset --hard a6ace91
  • 使用^符号:只能后退
    • git reset --hard HEAD^
    • 注:一个^表示后退一步,^^表示后退两步,n个^表示后退n步
  • 使用~符号:只能后退
    • git reset --hard HEAD~n
    • 注:表示后退n步
  1. reset命令的三个参数对比
  • --soft
    • 仅仅在本地库移动HEAD指针
  • --mixed:
    • 在本地库移动HEAD指针
    • 重置暂存区
  • --hard
    • 在本地库移动HEAD指针
    • 重置暂存区
    • 重置工作区
  1. 删除文件并找回
  • 前提:删除前,文件存在时的状态提交到了本地库。
  • 操作:`git reset --hard [需找回文件存在的指针位置]
    • 删除操作已经提交到本地库:指针位置指向历史记录
    • 删除操作尚未提交到本地库:指针位置使用HEAD
  1. 比较文件差异
  • git diff [file name]: 将工作区中的文件和暂存区进行比较
  • git diff [本地库中历史版本] [file name]: 将工作区中的文件和本地库历史记录进行比较
  • 不带文件名比较多个文件
lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git diff good.txt
diff --git a/good.txt b/good.txt
index baf19f6..74747ba 100644
--- a/good.txt
+++ b/good.txt
@@ -5,3 +5,4 @@ UUUUUUU
 ddddddd
 eeeeeee
 fffffff
+*******

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git diff HEAD^ good.txt
diff --git a/good.txt b/good.txt
index baf19f6..74747ba 100644
--- a/good.txt
+++ b/good.txt
@@ -5,3 +5,4 @@ UUUUUUU
 ddddddd
 eeeeeee
 fffffff
+*******

lenovo@Maximus-PC MINGW64 /e/IdeaProjects/workspace/EmptyDemo (master)
$ git diff
warning: LF will be replaced by CRLF in apple.txt.
The file will have its original line endings in your working directory.
diff --git a/apple.txt b/apple.txt
index 4c479de..656d67d 100644
--- a/apple.txt
+++ b/apple.txt
@@ -1 +1,2 @@
 apple
+-----
diff --git a/good.txt b/good.txt
index baf19f6..74747ba 100644
--- a/good.txt
+++ b/good.txt
@@ -5,3 +5,4 @@ UUUUUUU
 ddddddd
 eeeeeee
 fffffff
+*******
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,657评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,662评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,143评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,732评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,837评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,036评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,126评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,868评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,315评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,641评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,773评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,859评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,584评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,676评论 2 351

推荐阅读更多精彩内容

  • Git 基础 基本原理 客户端并不是只提取最新版本的文件快照,而是把代码仓库完整的镜像下来。这样一来,任何一处协同...
    __silhouette阅读 15,860评论 5 147
  • Git 命令行学习笔记 Git 基础 基本原理 客户端并不是只提取最新版本的文件快照,而是把代码仓库完整的镜像下来...
    sunnyghx阅读 3,908评论 0 11
  • 【1月18日,轻食第25天】 上午餐,一盒火龙果,二个干柿子。 晚餐,厨房做了清炒豌豆、莴笋片与豆腐炒肉,后一个只...
    张春华阅读 176评论 0 0
  • 2017.09.03No155 0735-0800用时25分钟字数657 一直以来很佩服那些能够做到全身心投入一件...
    何不可阅读 367评论 1 4
  • 蟋蟀你能不叫,烦人忘记时间。吊坠丝瓜衔细雨,身披日月阑干。架下葡萄思想,一心向往和盘。 户外青山枫叶,伴云亲雾弥天...
    木貞ma阅读 196评论 1 2