学习git这一篇就够了!!!

时间:2022-07-26
本文章向大家介绍学习git这一篇就够了!!!,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

git命令操作

本地库操作

初始化本地仓库

  • 初始化命令 git init
$ work % cd workspace
$ workspace % mkdir WebService //创建文件夹
$ workspace % git init //初始化
Initialized empty Git repository in /Users/jack/work/workspace/.git/
$ workspace %
  • 初始化后的效果 会在初始化后的目录中生成一个.git隐藏文件夹
$ workspace % cd .git
$ .git % ls
HEAD		branches	config		description	hooks		info		objects		refs
$ .git % ls -l
total 24
-rw-r--r--   1 jack  staff   23 Sep 25 22:16 HEAD
drwxr-xr-x   2 jack  staff   64 Sep 25 22:16 branches
-rw-r--r--   1 jack  staff  137 Sep 25 22:16 config
-rw-r--r--   1 jack  staff   73 Sep 25 22:16 description
drwxr-xr-x  13 jack  staff  416 Sep 25 22:16 hooks
drwxr-xr-x   3 jack  staff   96 Sep 25 22:16 info
drwxr-xr-x   4 jack  staff  128 Sep 25 22:16 objects
drwxr-xr-x   4 jack  staff  128 Sep 25 22:16 refs
$ .git %

注意:.git目录中的文件不要删除也不要修改,否则git不能正常工作。

设置签名

  • 形式 用户名:XXX Email地址:XXX@gmail.com
  • 作用 只是为了区分成员身份,不会给邮件地址发送邮件。而且邮件地址可以是不存在地址。
  • 注意 这里的签名和远程仓库的邮件地址密码没有任何关系
  • 命令 WebService % git config user.name njzy WebService % git config user.email njzy@2020.com WebService % WebService % git config --global user.name njzy_global WebService % git config --global user.email njzy_global@2020.com WebService %
    1. 系统用户级别 登录当前系统的用户范围 git config --global user.name 用户名 git config --global user.email 邮箱地址
    2. 项目级别/仓库级别 仅在当前本地仓库有效 git config user.name 用户名 git config user.email 邮箱地址
  • 签名保存位置1.项目级别当前项目下的.git文件夹下的config文件中。查看命令:cat .git/config WebService % cat .git/config //查看当前项目的签名信息[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true precomposeunicode = true[user] name = njzy //被设置的项目用户名 email = njzy@2020.com //被设置的项目邮件地址 WebService %2.系统用户级别当前用户文件夹下的.gitconfig文件中。查看命令:cat .gitconfig ~ % cd ~ //切换到当前用户根目录 ~ % pwd //查看当前位置/Users/jack ~ % cat .gitconfig //查看全局签名信息[user] name = njzy_global //被设置的全局用户名 email = njzy_global@2020.com //被设置的全局邮件地址 ~ %
  • 项目级别和系统用户级别的签名的优先(就近原则) 1.> 两个都设置情况下 项目级别优先于系统用户级别 2.> 只设定系统用户级别签名 以系统用户级签名别为准 3.> 只设定项目级别 以项目级别为准 4.> 两个都没有设定的话不允许。

查看git状态

  • 作用 确认git的暂存区,本地仓库的情况。
  • 命令 git status

添加操作

  • 目的 把内容从工作区添加到暂存区,也叫追踪。
  • 命令 1.添加单个文件 git add 文件名 2.添加多个文件 1.> git add 文件名1 文件名2 文件名3 .... 2.> git add -A 3.> git add . 详细参考git帮助文档 usage: git add [<options>] [--] <pathspec>... -n, --dry-run dry run -v, --verbose be verbose -i, --interactive interactive picking -p, --patch select hunks interactively -e, --edit edit current diff and apply -f, --force allow adding otherwise ignored files -u, --update update tracked files //更新追踪的文件 --renormalize renormalize EOL of tracked files (implies -u) -N, --intent-to-add record only the fact that the path will be added later -A, --all add changes from all tracked and untracked files //添加所有被追踪文件的更新,和没有被追踪的文件 --ignore-removal ignore paths removed in the working tree (same as --no-all) //忽略工作区被删除的文件 --refresh don't add, only refresh the index --ignore-errors just skip files which cannot be added because of errors //忽略由于文件的错误不能被追踪 --ignore-missing check if - even missing - files are ignored in dry run --chmod (+|-)x override the executable bit of the listed files
  • 使用例为了清除git各个阶段的状态,在进行添加操作之前先查看一下git的状态。(下面例子是从工作区文件的创建到追加暂存区的过程)1.查看工作区被初始化后的状态 WebService % git statusOn branch masterNo commits yet //本地仓库没有可提交的东西nothing to commit (create/copy files and use "git add" to track) //暂存区没有可以提交的东西 WebService % vim testGit.txt WebService % cat testGit.txt//查看文件内容hello !this is my first git test file ! WebService %3.查看文件创建完后git状态 WebService % git statusOn branch masterNo commits yet //本地仓库没有乐意提交的东西。Untracked files: //没有追加跟踪的文件 (use "git add <file>..." to include in what will be committed) //使用git add <file> 命令可以追加文件到暂存区 testGit.txt //刚才新创建的文件,此时文件名字体为红色nothing added to commit but untracked files present (use "git add" to track) //使用git add命令 WebService %4.将文件添加到暂存区并查看状态 WebService % git add testGit.txt WebService % git statusOn branch masterNo commits yetChanges to be committed: (use "git rm --cached <file>..." to unstage) //已经把文件放到暂存区,如果想清除暂存区,可以使用git rm --cached 文件名来擦除暂存区 testGit.txt new file: testGit.txt //此时文件为绿色

提交操作

  • 目的 将文件从暂存区提交到本地仓库
  • 命令 1.提交单个文件 git commit -m "提交时注释信息" 文件名 2.提交复数个文件 git comit -a -m "提交时注释信息" 更多详细可以参考git帮助文档 usage: git commit [<options>] [--] <pathspec>... -q, --quiet suppress summary after successful commit -v, --verbose show diff in commit message template Commit message options -F, --file <file> read message from file --author <author> override author for commit --date <date> override date for commit -m, --message <message> commit message -c, --reedit-message <commit> reuse and edit message from specified commit -C, --reuse-message <commit> reuse message from specified commit --fixup <commit> use autosquash formatted message to fixup specified commit --squash <commit> use autosquash formatted message to squash specified commit --reset-author the commit is authored by me now (used with -C/-c/--amend) -s, --signoff add Signed-off-by: -t, --template <file> use specified template file -e, --edit force edit of commit --cleanup <mode> how to strip spaces and #comments from message --status include status in commit message template -S, --gpg-sign[=<key-id>] GPG sign commit Commit contents options -a, --all commit all changed files -i, --include add specified files to index for commit --interactive interactively add files -p, --patch interactively add changes -o, --only commit only specified files -n, --no-verify bypass pre-commit and commit-msg hooks --dry-run show what would be committed --short show status concisely --branch show branch information --ahead-behind compute full ahead/behind values --porcelain machine-readable output --long show status in long format (default) -z, --null terminate entries with NUL --amend amend previous commit --no-post-rewrite bypass post-rewrite hook -u, --untracked-files[=<mode>] show untracked files, optional modes: all, normal, no. (Default: all)
  • 使用例提交文件到本地仓库并查看git状态 WebService % git commit -m "first commit:new file testGit.txt" testGit.txt[master (root-commit) c970a17] first commit:new file testGit.txt //first commit:new file testGit.txt 是提交时候的注释信息 1 file changed, 2 insertions(+) //改变了一个文件,追加了两行信息。 create mode 100644 testGit.txt

擦除暂存区操作

  • 目的 擦除暂存区的内容
  • 命令git rm --cached 文件名 WebService % git rm --cached testGit.txtrm 'testGit.txt' WebService % git statusOn branch masterNo commits yetUntracked files: (use "git add <file>..." to include in what will be committed) testGit.txt //没有被追踪的文件nothing added to commit but untracked files present (use "git add" to track)

查看历史版本信息

  • 目的 查看提交版本的历史信息
  • 命令 1.git log 显示完整信息,包含提交的版本号,提交用户,提交日期,提交注释等信息。 2.git log --pretty=oneline 只包含提交后的完整版本号和提交时的注释信息 3.git log --oneline 包含提交后的简略版本号和提交时的注释信息
  • 注意 只能查看已经被提交(commit)的文件的历史信息。
  • 使用例1 WebService % git log//第二次被提交的信息commit 148942fd3c0ff3e01e09bf98d883f97a3b0a9c86 (HEAD -> master) //提交版本的hash值Author: njzy <njzy@2020.com> //提交用户信息Date: Sat Sep 26 15:53:52 2020 +0900 //提交日期 this is my second commit, modify testGit.txt //提交时注释//第一次被提交的信息commit c970a176de13abc4d436e4a08df329046ef193e7Author: njzy <njzy@2020.com>Date: Sat Sep 26 12:30:20 2020 +0900 first commit:new file testGit.txt
  • 使用例2 WebService % git log --pretty=oneline148942fd3c0ff3e01e09bf98d883f97a3b0a9c86 (HEAD -> master) this is my second commit, modify testGit.txtc970a176de13abc4d436e4a08df329046ef193e7 first commit:new file testGit.txt
  • 使用例3 WebService % git log --oneline148942f (HEAD -> master) this is my second commit, modify testGit.txtc970a17 first commit:new file testGit.txt

历史版本的前进或者回退

查看带head信息的日志

  • 目的 查看带有指针和hash地址的日志信息,方便进行版本的前进或者后退。
  • 命令 git reflog
  • 使用例 WebService % git reflog148942f (HEAD -> master) HEAD@{0}: commit: this is my second commit, modify testGit.txt//148942f:简短的hash地址//HEAD@{0}:指针0的位置c970a17 HEAD@{1}: commit (initial): first commit:new file testGit.txt//HEAD@{1} 指针1的位置

版本的前进或者和回退

基于hash地址的版本指定【推荐】

  • 目的 对版本进行前进操作或者回退操作
  • 命令 git reset --hard 指定版本的hash地址
  • 使用例从第五个版本跳转到第三个版本 WebService % git reflog //首先查看各种版本信息d3c9608 (HEAD -> master) HEAD@{0}: commit: this is my fifth updata,updata testGit.txt364024e HEAD@{1}: commit: this is my fourth commit,updata testGit.txt9dba7c5 HEAD@{2}: commit: this is my third commit,updata testGit.txt148942f HEAD@{3}: commit: this is my second commit, modify testGit.txtc970a17 HEAD@{4}: commit (initial): first commit:new file testGit.txt WebService % git reset --hard 9dba7c5//然后根据查看的版本地址信息,指定到要恢复到的版本。HEAD is now at 9dba7c5 this is my third commit,updata testGit.txt WebService % cat testGit.txt //然后查看回退后的当前版本文件内容hello !this is my first git test file !this is addedthis is my third updata! WebService % git reflog //然后我们再来看一下log信息9dba7c5 (HEAD -> master) HEAD@{0}: reset: moving to 9dba7c5d3c9608 HEAD@{1}: commit: this is my fifth updata,updata testGit.txt364024e HEAD@{2}: commit: this is my fourth commit,updata testGit.txt9dba7c5 (HEAD -> master) HEAD@{3}: commit: this is my third commit,updata testGit.txt148942f HEAD@{4}: commit: this is my second commit, modify testGit.txtc970a17 HEAD@{5}: commit (initial): first commit:new file testGit.txt

使用^符号(只能进行版本的后退不能前进)

  • 目的 进行版本的回退
  • 命令 git reset --hard HEAD^ (注意:一个^代表倒退一个版本)
  • 使用例从第四个版本倒退到一个版本到第三个版本 WebService % git reset --hard HEAD^HEAD is now at 9dba7c5 this is my third commit,updata testGit.txt WebService % cat testGit.txthello !this is my first git test file !this is addedthis is my third updata! WebService %倒退两个版本 WebService % git reset --hard HEAD^^HEAD is now at c970a17 first commit:new file testGit.txt WebService % cat testGit.txthello !this is my first git test file ! WebService %

使用~符号

  • 目的 退回指定版本 (只能倒退,但是可以指定指定退几步)
  • 命令 git reset --hard HEAD~要退的步数
  • 使用例从当前版本第五版后退两步到第三个版本 WebService % git reset --hard HEAD~2HEAD is now at 9dba7c5 this is my third commit,updata testGit.txt WebService % cat testGit.txthello !this is my first git test file !this is addedthis is my third updata!

reset三个参数的对比(对比详细图文参照文末图片1,2,3)

--soft参数

  • 说明 仅在本地仓库移动HEAD指针
  • 命令 git reset -soft 指定版本号
  • 使用例 WebService % cat testGit.txt //退回版本之前查看文件内容hello !this is my first git test file !this is addedthis is my third updata! WebService % git reset --soft 148942f//退回版本操作 WebService % cat testGit.txt //退回版本信息后查看文件内容hello !this is my first git test file !this is addedthis is my third updata! WebService % git status //查看状态On branch masterChanges to be committed: (use "git restore --staged <file>..." to unstage) modified: testGit.txt //查看完后显示为绿色字体,表示被更改了。为哈如此呢? //是由于原来本地仓库,暂存区,工作区的指针是相同的。而经过soft操作后,本地仓库的指针发生变化,导致暂存区的指针相对的产生了变化。所以显示是发生了变化。

--mixd参数

  • 说明 在本地仓库移动HEAD指针,重置暂存区。
  • 命令 git reset --mixed 指定版本号
  • 使用例 WebService % cat testGit.txt //跳转到其他版本之前文件内容hello !this is my first git test file !this is addedthis is my third updata! WebService % git reset --mixed d3c9608//指定到指定版本Unstaged changes after reset:M testGit.txt WebService % git reflog//指定版本后的日志d3c9608 (HEAD -> master) HEAD@{0}: reset: moving to d3c9608148942f HEAD@{1}: reset: moving to 148942f9dba7c5 HEAD@{2}: reset: moving to HEAD~2d3c9608 (HEAD -> master) HEAD@{3}: reset: moving to d3c9608c970a17 HEAD@{4}: reset: moving to HEAD^^9dba7c5 HEAD@{5}: reset: moving to HEAD^364024e HEAD@{6}: reset: moving to 364024e9dba7c5 HEAD@{7}: reset: moving to 9dba7c5d3c9608 (HEAD -> master) HEAD@{8}: commit: this is my fifth updata,updata testGit.txt364024e HEAD@{9}: commit: this is my fourth commit,updata testGit.txt9dba7c5 HEAD@{10}: commit: this is my third commit,updata testGit.txt148942f HEAD@{11}: commit: this is my second commit, modify testGit.txtc970a17 HEAD@{12}: commit (initial): first commit:new file testGit.txt WebService % git statusOn branch masterChanges not staged for commit: (use "git add <file>..." to update what will be committed) (use "git restore <file>..." to discard changes in working directory) modified: testGit.txt //此时文件名是红色no changes added to commit (use "git add" and/or "git commit -a")

--hard参数

  • 说明 在本地仓库移动HEAD指针 重置暂存区 重置工作区
  • 命令 git reset --hard 指定版本
  • 使用例 参照上面各种版本前进或者后退的例子。

删除文件并找回

  • 前提 提交到本地库后删除才能找回
  • 删除 物理删除即可
  • 找回版本 通过跳转到指定版本命令即可找回删除的内容。
  • 使用例新建文件->追加到暂存区->提交到本地仓库->删除文件->添加到暂存区->提交到本地仓库 WebService % git commit -m "add new test2.txt" test2.txt //3.提交到本地仓库[master 8a4e57d] add new test2.txt 1 file changed, 3 insertions(+) create mode 100644 test2.txt WebService % git status //查看git状态On branch masternothing to commit, working tree clean WebService % WebService % WebService % WebService % rm test2.txt //4.本地物理删除文件 WebService % ls -l //5.删除后确认total 8-rw-r--r-- 1 jack staff 134 Sep 26 22:33 testGit.txt WebService % git status //6.查看删除后On branch masterChanges not staged for commit: (use "git add/rm <file>..." to update what will be committed) (use "git restore <file>..." to discard changes in working directory) deleted: test2.txt //红色字体,表示这个操作没有被添加到暂存区no changes added to commit (use "git add" and/or "git commit -a") WebService % git status //查看添加后的git状态On branch masterChanges to be committed: (use "git restore --staged <file>..." to unstage) deleted: test2.txt //文字为绿色,表示暂存区已被更新。 WebService % git status //查看git状态On branch masternothing to commit, working tree clean WebService % lstestGit.txt WebService % git reflog //9.查看日志信息f8373c4 (HEAD -> master) HEAD@{0}: commit: delete file test2.txt //10/1文件被删除的历史记录8a4e57d HEAD@{1}: commit: add new test2.txtd3c9608 HEAD@{2}: reset: moving to d3c9608d3c9608 HEAD@{3}: reset: moving to d3c9608148942f HEAD@{4}: reset: moving to 148942f9dba7c5 HEAD@{5}: reset: moving to HEAD~2d3c9608 HEAD@{6}: reset: moving to d3c9608c970a17 HEAD@{7}: reset: moving to HEAD^^9dba7c5 HEAD@{8}: reset: moving to HEAD^364024e HEAD@{9}: reset: moving to 364024e9dba7c5 HEAD@{10}: reset: moving to 9dba7c5d3c9608 HEAD@{11}: commit: this is my fifth updata,updata testGit.txt364024e HEAD@{12}: commit: this is my fourth commit,updata testGit.txt9dba7c5 HEAD@{13}: commit: this is my third commit,updata testGit.txt148942f HEAD@{14}: commit: this is my second commit, modify testGit.txtc970a17 HEAD@{15}: commit (initial): first commit:new file testGit.txt WebService % ls -l//3.查看本地文件是否恢复?total 16-rw-r--r-- 1 jack staff 27 Sep 27 07:25 test2.txt//文件又被恢复回来了-rw-r--r-- 1 jack staff 134 Sep 26 22:33 testGit.txt WebService %

恢复暂存区的文件

  • 说明 使暂存区文件恢复
  • 命令 git reset --hard HEAD 通过上面刷新让三个区保持一致即可
  • 条件 要恢复的文件提交到了本地库

版本比较

比较工作区和暂存区

  • 命令 git diff 文件名
  • 使用例比较修改后的test2.txt的工作区和暂存区工作区,暂存区,本地仓库test2.txt内容一致aaaaaaaabbbbbbbbcccccccc修改后的工作区test2.txtaaaaaaaabbbbbbbbcccccccc@@@@@@比较后结果 WebService % git diff test2.txtdiff --git a/test2.txt b/test2.txtindex 092b923..0c08686 100644--- a/test2.txt+++ b/test2.txt@@ -1,3 +1,3 @@ aaaaaaaa bbbbbbbb-cccccccc //-代表删除+cccccccc@@@@@@ //+代表追加。git是以行尾单位来管理版本的,所以cccccccc表示为删除,cccccccc@@@@@@表示为追加。 WebService %提交到暂存区后再比较 WebService % git add test2.txt WebService % git diff test2.txt

工作区和本地仓库版本比较

  • 命令 git diff 指定版本 [文件名]
  • 指定版本 HEAD:当前本地仓库的版本 HEAD^:本地仓库的上一个版本 HEAD^^:本地仓库的上两个版本 HEAD~n:本地仓库的上n个版本 版本号的hash值
  • 注意 文件名不写的话是所有当前文件夹的所有文件
  • 使用例工作区和本地仓库的当前版本比较 WebService % git reset --hard HEAD//先把三个区同步一下,恢复到同一状态HEAD is now at 8a4e57d add new test2.txt WebService % git status On branch masternothing to commit, working tree clean WebService % cat test2.txtaaaaaaaabbbbbbbbcccccccc WebService % vim test2.txt //对工作区修改 WebService % git diff HEAD test2.txt//修改后进行比较diff --git a/test2.txt b/test2.txtindex 092b923..0c08686 100644--- a/test2.txt+++ b/test2.txt@@ -1,3 +1,3 @@ aaaaaaaa bbbbbbbb-cccccccc+cccccccc@@@@@@ WebService %和本地仓库的上一个版本进行比较 WebService % git diff HEAD^ test2.txtdiff --git a/test2.txt b/test2.txtnew file mode 100644index 0000000..0c08686--- /dev/null+++ b/test2.txt@@ -0,0 +1,3 @@+aaaaaaaa+bbbbbbbb+cccccccc@@@@@@ WebService %

分支

分支概述

在版本控制过程中,使用多条线同时推进多个任务。

分支好处

  • 同时推进多个功能开发,提高生产效率。
  • 各个分支在开发过程中,如有某个分支失败,不会对其他分支有影响。失败的分支可以重新获取mastaer分支,进行再次开发。

创建分支

  • 命令
  • 使用例 git branch 分支名 $ WebService % git branch hot_fix

查看分支

  • 命令 git branch -v
  • 使用例 WebService % git branch -vhot_fix 8a4e57d add new test2.txt* master 8a4e57d add new test2.txt//*所在的位值就是我们现在所以在的分支 WebService %

切换分支

  • 说明 把分支从当前分支切换到其他分支
  • 命令 git checkout 分支名
  • 使用例 WebService % git checkout hot_fixSwitched to branch 'hot_fix' WebService % git branch -v* hot_fix 8a4e57d add new test2.txt //现在已经切换到hot_fix分支master 8a4e57d add new test2.txt

合并分支

  • 说明 把指定分支的内容合并到当前分支
  • 命令git merge 要合并内容的分支名 WebService % git branch -v//查看当前分支* hot_fix a360edf hox_fix one addmaster 8a4e57d add new test2.txt WebService % git checkout master//切换到内容要合并到的分支Switched to branch 'master' WebService % git branch -v//再次确认切换后的分支hot_fix a360edf hox_fix one add* master 8a4e57d add new test2.txt WebService % git merge hot_fix//进行分支合并Updating 8a4e57d..a360edfFast-forwardtest2.txt | 2 +-1 file changed, 1 insertion(+), 1 deletion(-) WebService % cat test2.txt//查看合并后的内容aaaaaaaabbbbbbbbcccccccc edit by hox_fix//次内容是hot_fix分支内容,证明已经合并成功。 WebService % git branch -vhot_fix a360edf hox_fix one add //当两个分支内容一样的时候,此时两个分支的hash值是一样的。* master a360edf hox_fix one add //当两个分支内容一样的时候,此时两个分支的hash值是一样的。

解决合并冲突

  • 说明 当要合并两个分支的时候,两个分支修改内容不一样,导致不能自动进行合并操作,所以需要手动进行合并操作。
  • 解决思路1.删除冲突文件内容的特殊符号2.修改冲突内容3.修改后的文件添加到暂存区。(git add 文件名)4.从暂存区提交到本地仓库。(命令:git commit -m "注释") 注:这里的commit命令不能带文件名称参数。 WebService % git commit test2.txt//把暂存区文件提交到本地仓库[master 4a902f1] updata master 1 file changed, 1 insertion(+) WebService % git branch -v//查看当前分支 hot_fix a360edf hox_fix one add* master 4a902f1 updata master WebService % WebService % git checkout hot_fix//切换到hot_fix分支Switched to branch 'hot_fix' WebService % git branch -v //查看分支* hot_fix a360edf hox_fix one addmaster 4a902f1 updata master WebService % vim test2.txt //编辑test2.txt WebService % git add test2.txt //修改后的文件添加到暂存区 WebService % git commit -m "updata hox_fix" test2.txt //提交文件到本地仓库[hot_fix ee3ae4c] updata hox_fix 1 file changed, 1 insertion(+) WebService % WebService % git merge master //合并分支Auto-merging test2.txtCONFLICT (content): Merge conflict in test2.txtAutomatic merge failed; fix conflicts and then commit the result.//自动合并分支失败,接下来需要手动修改文件后在进行提交来解决冲突 WebService % ls -ltotal 16-rw-r--r-- 1 jack staff 126 Sep 27 11:02 test2.txt-rw-r--r-- 1 jack staff 134 Sep 26 22:33 testGit.txt WebService % vim test2.txt //打开文件进行手动合并文件内容 WebService % git status//查看git状态On branch hot_fix //在hot_fix分支上You have unmerged paths.//没有合并的路径 (fix conflicts and run "git commit") //修理冲突并执行 (use "git merge --abort" to abort the merge) //终止合并Unmerged paths: (use "git add <file>..." to mark resolution) //使用git add <file> 命令去标记为解决 both modified: test2.txtno changes added to commit (use "git add" and/or "git commit -a") WebService % git status On branch hot_fixAll conflicts fixed but you are still merging.//所有的冲突已经解决了,但是你仍然处于“合并中”状态。 (use "git commit" to conclude merge)//使用git commit 命令去变换”合并中“的状态Changes to be committed: modified: test2.txt WebService % git commit -m "resolve conflict"//去掉文件名再次执行提交。[hot_fix 0d62477] resolve conflict //冲突解决了。 WebService % vim test2.txt//确认合并后的内容 WebService %上面执行完merge命令后,test2.txt文件的内容,aaaaaaaabbbbbbbbcccccccc edit by hox_fix<<<<<<< HEAD //指针版本内容eeeeeeee add by hox_fix=======dddddddd add by master>>>>>>> master //master版本内容上面修改后的文件内容aaaaaaaabbbbbbbbcccccccc edit by hox_fixdddddddd add by mastereeeeeeee add by hox_fix

远程库操作

注册账户

  • 注册github账户
  • 注册码云账户
  • 两个账户任意一个即可

创建项目仓库

  • 创建新仓库 (在这里不做叙述)

远程仓库别名设定

  • 说明 起别名的目的为了在推送到远程仓库的时候比较简单,不至于敲很长的地址。
  • 命令 git remote add 别名 远程仓库地址.git
  • 使用例 WebService % git remote add origin https://github.com/jack2019/WebService.git WebService %

查看远程仓库别名信息

  • 说明 在设定远程仓库别名后,查看设定是否成功。
  • 命令 git remote -v
  • 使用例 WebService % git remote -v origin https://github.com/jack2019/WebService.git (fetch) origin https://github.com/jack2019/WebService.git (push) WebService %

推送到远程仓库

  • 说明 把本地仓库的内容上传到远程仓库
  • 命令 git push 远程库别名 分支名
  • 使用例 WebService % git push origin hot_fixEnumerating objects: 30, done.Counting objects: 100% (30/30), done.Delta compression using up to 16 threadsCompressing objects: 100% (22/22), done.Writing objects: 100% (30/30), 2.52 KiB | 1.26 MiB/s, done.Total 30 (delta 4), reused 0 (delta 0)remote: Resolving deltas: 100% (4/4), done.remote: remote: Create a pull request for 'hot_fix' on GitHub by visiting:remote: https://github.com/jack2019/WebService/pull/new/hot_fixremote: To https://github.com/jack2019/WebService.git * [new branch] hot_fix -> hot_fix

推送发生失败

  • 当推送到远程仓库时莫名发生失败,此时可以进行强行推送
  • 命令 git push 远程仓库名称.git 分支名 -f
  • 使用例 WebService % git push origin master //首次推送To https://github.com/jack2019/WebService.git ! [rejected] master -> master (fetch first)error: failed to push some refs to 'https://github.com/jack2019/WebService.git' //推送失败hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually caused by another repository pushinghint: to the same ref. You may want to first integrate the remote changeshint: (e.g., 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.

远程仓库克隆

  • 说明 当我们想从github或者码云下载他人的项目进行学习阅读的时候,我们可以使用克隆命令。
  • 命令 git clone 远程仓库地址
  • 注意 克隆操作在完成下载文件到本地的同时还完成了两件事情。分别是初始化远程仓库别名,初始话本地仓库(也就是git init命令执行过程。)
  • 使用例 ➜ IdeaProjects git clone https://github.com/jack2019/gitLearnning.git //克隆远程仓库库 Cloning into 'gitLearnning'... remote: Enumerating objects: 52, done. remote: Counting objects: 100% (52/52), done. remote: Compressing objects: 100% (34/34), done. remote: Total 52 (delta 10), reused 51 (delta 10), pack-reused 0 Unpacking objects: 100% (52/52), done. //克隆成功 ➜ IdeaProjects cd gitLearnning //进入下载的文件夹 ➜ gitLearnning git:(master) ls -al //查看下载的文件 total 16 drwxr-xr-x 5 jack staff 160 Oct 6 21:34 . drwxr-xr-x@ 21 jack staff 672 Oct 6 21:34 .. drwxr-xr-x 13 jack staff 416 Oct 6 21:34 .git -rw-r--r-- 1 jack staff 219 Oct 6 21:34 test2.txt -rw-r--r-- 1 jack staff 134 Oct 6 21:34 testGit.txt ➜ gitLearnning git:(master) git status //查看git状态 On branch master Your branch is up to date with 'origin/master'. //被下载到了origin/master下 nothing to commit, working tree clean ➜ gitLearnning git:(master)

从远程库拉取最新的内容

fetch操作

  • 说明 远程库的内容被更新后,我们想取得最新的到本地,这时候就用到了fetch命令。如果我们还想和本地的版本进行合并。我们还需要使用merge命令进行合并。
  • 命令 git fetch 远程仓库别名 分支名
  • 使用例 git fetch origin master //抓取内容 remote: Enumerating objects: 5, done. remote: Counting objects: 100% (5/5), done. remote: Compressing objects: 100% (2/2), done. remote: Total 3 (delta 1), reused 3 (delta 1), pack-reused 0 Unpacking objects: 100% (3/3), done. From https://github.com/jack2019/WebService * branch master -> FETCH_HEAD f1a3142..da6a4ee master -> origin/master Window-PC MINGW64 /e/workspace/web/webservice (master) cat test2.txt aaaaaaaa bbbbbbbb cccccccc edit by hox_fix dddddddd add by master mmmmmmm push after updata! Window-PC MINGW64 /e/workspace/web/webservice (master) git checkout origin/master //fetch下来的内容放在origin/master下,切换分支到origin、master下。 Note: checking out 'origin/master'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by performing another checkout. If you want to create a new branch to retain commits you create, you may do so (now or later) by using -b with the checkout command again. Example: git checkout -b <new-branch-name> HEAD is now at da6a4ee... mac commit ,window fetch Window-PC MINGW64 /e/workspace/web/webservice ((da6a4ee...)) git branch -v //查看当前分支 * (HEAD detached at origin/master) da6a4ee mac commit ,window fetch master f1a3142 [behind 1] push after updata test2.txt //当前所处的分支是origin/master下 Window-PC MINGW64 /e/workspace/web/webservice ((da6a4ee...)) cat test2.txt //查看当前分支下的文件内容 aaaaaaaa bbbbbbbb cccccccc edit by hox_fix dddddddd add by master mmmmmmm push after updata nnnnnnn macbook add! //当前分支新追加的内容 Window-PC MINGW64 /e/workspace/web/webservice ((da6a4ee...)) git checkout master //切换分支到master Previous HEAD position was da6a4ee... mac commit ,window fetch Switched to branch 'master' Your branch is behind 'origin/master' by 1 commit, and can be fast-forwarded. (use "git pull" to update your local branch) Window-PC MINGW64 /e/workspace/web/webservice (master) cat test2.txt //查看当前分支内容 aaaaaaaa bbbbbbbb cccccccc edit by hox_fix dddddddd add by master mmmmmmm push after updata! Window-PC MINGW64 /e/workspace/web/webservice (master) git merge origin/master //把origin/master分支内容合并到master Updating f1a3142..da6a4ee Fast-forward test2.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Window-PC MINGW64 /e/workspace/web/webservice (master)

pull操作

  • 说明 pull操作等价于fetch操作 + merge操作
  • 命令 git pull 远程仓库别名 分支名
  • 使用例 git pull origin masterremote: Enumerating objects: 5, done.remote: Counting objects: 100% (5/5), done.remote: Compressing objects: 100% (2/2), done.remote: Total 3 (delta 1), reused 3 (delta 1), pack-reused 0Unpacking objects: 100% (3/3), done.From https://github.com/jack2019/WebService * branch master -> FETCH_HEAD da6a4ee..494ed55 master -> origin/masterUpdating da6a4ee..494ed55Fast-forward test2.txt | 1 + 1 file changed, 1 insertion(+)Window-PC MINGW64 /e/workspace/web/webservice (master)

协同开发冲突的解决

  • 说明 如果不基于远程库最新版本进行修改的话则不能推送,必须先拉取最新的远程库。拉取后发生冲突,则按照“分支冲突解决”的操作即可。
  • 例子 mac端更新后提交github window端不拉取最新的github直接更新进行提交github。此时需要先拉取最新的远程库进行,并进行远程库和本地库的合并。

跨团队协作

  • 说明 当需要团队外部的人员进行代码的变更时,由于团队外的人没有push的权限,所以需要团队外人员对项目进行fork操作。
  • 正常流程 1.github用户1fork用户2的项目 (fork之后,在远程库自动创建一个同样的项目) 2.clone到本地 3.本地修改内容 4.提交到暂存区,本地库 5.push到github用户1 6.向用户2申请提交请求 pull requests new pull request 7.用户2进行pull requestes的处理,并进行merge操作。

git知识补充

  • Q:当不小心对整个系统的文件夹进行git inint操作后该如何取消? A:通过命令rm -rf .git对git文件进行删除操作就即可。
  • Q:如何查看帮助文档? A:通过命令git help 要查看的命令 进行查看即可。