目录
Git基本知识学习
Git总结
操作仓库变化
专用名词的译名如下:
Workspace:工作区
Index / Stage:暂存区
Repository:仓库区(或本地仓库)
Remote:远程仓库
新建代码库
1. 在当前目录新建一个git代码库
git init
2. 新建一个project目录,将其初始化为git代码库
git init [project-name]
3. 下载一个项目和它的整个代码历史
git clone [url]
4. 在本地目录下关联远程repository
git remote add origin [url]
5. 取消本地目录下关联的远程库【断开远程连接】
git remote remove origin
首次本地项目上传【步骤】
1. 进入本地的项目中打开终端输入
git init
2. 等初始化完成后将项目添加到本地仓库中
git add .
3. 查看一下git状态,看是否添加成功
git status
4. commit到本地仓库
git commit -am "提交时描述信息"
5. 连接到远程码云仓库
git remote add origin 仓库地址
6. 如果是第一次执行,可以先需要pull一下
git pull
7. 将本地代码push到码云的master主分支上
git push -u -f origin master
配置
Git的设置文件为.gitconfig,它可以在用户主目录下(全局配置),也可以在项目目录下(项目配置)
1. config的三个作用域
git config --local 对当前仓库有效【优先级最高】
git config --global 对当前用户所有仓库有效
git config --system 对系统所有登录的用户有效【优先级最低】
2. 显示当前的git配置
git config --list [--local/--golbal/--system]
git config -l [--local/--golbal/--system]
3. 编辑git配置文件
git config -e [--global/--local/--system]
4. 设置提交代码时候的用户信息
git config [--global/--local/--system] user.name 'your_name'
git config [--global/--local/--system] user.email 'your_email@domain.com'
5. 查看配置的用户信息
git config [--global/--local/--system] user.name
git config [--global/--local/--system] user.email
6. 取消配置的用户信息
git config [--global/--local/--system] --unset user.name
git config [--global/--local/--system] --unset user.email
更新文件
1. 添加文件到暂存区
git add [file1] [file2] ... 添加指定文件到暂存区
git add [dir] 添加指定目录到暂存区,包括子目录
git add . 添加当前目录的所有文件到暂存区【常用】
git add --u <=> git add --update 添加被删除和修改的文件到暂存区
git add --a 添加被删除、修改、新增的文件到暂存区【所有文件】
2. 给文件重命名
git mv [file-original] [file-renamed]
3. 删除工作区文件,并且将这次删除放入暂存区
git rm [file1] [file2] ...
4. 停止追踪指定文件,但该文件会保留在工作区
git rm --cached [file]
代码提交
1. 提交暂存区到仓库区
git commit -m 'message'
2. 提交暂存区的指定文件到仓库区
git commit [file1] [file2] ... -m 'message'
3. 提交工作区自上次commit之后的变化,直接到仓库区
git commit -a
4. 提交时显示所有diff信息
git commit -v
5. 使用一次新的commit,替代上一次提交,如果代码没有任何新变化,则用来改写上一次commit的提交信息
git log -1 查看最近一次commit
git commit --amend 用vim编辑commit的message
git commit --amend -m 'new message' 直接更新commit的message
6. 重做上一次commit,并包括指定文件的新变化
git commit --amend [file1] [file2] ...
git commit -am 'add and commit'
7. 把连续几个commit整合成一个commit
git rebase -i xxxxxx 进入vim编辑页面用s替换pick,然后保存退出
.git目录
HEAD 指向当前的工作路径
config 存放本地仓库(local)的相关配置信息
refs/heads 存放分支
refs/tags 存放tag
objects 存放对象(.git/objects/ 文件夹中的子文件夹都是以哈希值的前两位字符命名,每个object由40位字符组成,前两个用来当做文件夹,后38位用来做文件)
1. 查看HEAD文件的内容
cat HEAD ref: refs/heads/xxxx
2. cat-file
git cat-file 命令 显示版本库对象的内容、类型以及大小信息
git cat-file -t xxxx 显示版本库对象的类型 commit tag tree blob
git cat-file -s xxxx 显示版本库对象的大小
git cat-file -p xxxx 显示版本库对象的内容
3. commit tree blob的关系
每一次commit会生成一个tree[912fa6](此次提交的项目目录结构,一级目录就有一个tree),tree里面可以包括tree和blob,blob指具体的某一个文件,blob和文件名没有关系(不以文件名区分),只要文件内容相同就是同一个blob。
分离头指针情况的注意事项:正在一个没有分支的情况下coding,代码变更没有基于某个branch,当前在master,然后git checkout 到某个commit
分支
1. 列出所有本地分支
git branch
git branch -v
2. 列出所有远程分支
git branch -r
git branch -r
3. 列出所有本地分支和远程分支
git branch -a
git branch -av
4. 新建一个分支,但依然停留在当前分支
git branch [branch-name]
5. 新建一个分支,并切换到该分支
git checkout -b [branch]
6. 新建一个分支,指向指定commit
git branch [branch] [commit]
7. 新建一个分支,与指定的远程分支建立追踪关系
git branch --track [branch] [remote-branch]
8. 切换到指定分支,并更新工作区
git checkout [branch-name]
9. 切换到上一个分支
git checkout -
10. 建立追踪关系,在现有分支与指定的远程分支之间
git branch --set-upstream [branch] [remote-branch]
11. 合并指定分支到当前分支
git merge [branch]
12. 选择一个commit,合并进当前分支
git cherry-pick [commit]
13. 删除分支
git branch -d [branch-name]
git branch -D [branch-name]
14 删除远程分支
git push origin --delete [branch-name]
git branch -dr [remote/branch]
标签
1. 列出所有tag
git tag
2. 新建一个tag在当前commit
git tag [tag]
3. 新建一个tag在指定commit
git tag [tag] [commit]
4. 删除本地tag
git tag -d [tag]
5. 删除远程tag
git push origin :refs/tags/[tagName]
6. 查看tag信息
git show [tag]
7. 提交指定tag
git push [remote] [tag]
8. 提交所有tag
git push [remote] --tags
9. 新建一个分支,指向某个tag
git checkout -b [branch] [tag]
查看信息
1. status
git status 显示有变更的文件
2. log
git log [--graph] 显示当前分支的版本历史[图形化]
git log --oneline 简洁的查看版本历史(commit版本7位号+commit信息)
git log -n4 [--oneline] 查看最近的4次commit信息[简洁的信息]
git log -5 --pretty --oneline 显示过去5次提交
git log --all [--graph] 查看所有分支log[图形化]
git log --oneline --all -n4 --graph 组合展示
git help --web log 跳转到git log的帮助文档
git log --stat 显示commit历史,以及每次commit发生变更的文件
git log -S [keyword] 搜索提交历史,根据关键词
git log [tag] HEAD --pretty=format:%s 显示某个commit之后的所有变动,每个commit占据一行
git log [tag] HEAD --grep feature 显示某个commit之后的所有变动,其"提交说明"必须符合搜索条件
git log --follow [file] 显示某个文件的版本历史,包括文件改名
git whatchanged [file] 显示某个文件的版本历史,包括文件改名
git log -p [file] 显示指定文件相关的每一次diff
git shortlog -sn 显示所有提交过的用户,按提交次数排序
3. diff
git diff 显示工作区和暂存区的代码差异
git diff [-- A-file A-file] 显示指定文件在工作区和暂存区的代码差异
git diff --cached 显示暂存区和HEAD的代码差异
git diff [A-branch] [B-branch] 显示两个分支的差异
git diff [A-branch] [B-branch] -- file 显示两个分支指定文件的的差异
git diff [A-commit] [B-commit] 显示两次提交之间的差异
git diff [A-commit] [B-commit] -- file 显示两次提交指定文件的差异
4. 显示指定文件是什么人在什么时间修改过
git blame [file]
5. 显示工作区与当前分支最新commit之间的差异
git diff HEAD
6. 显示今天你写了多少行代码
git diff --shortstat "@{0 day ago}"
7. 显示某次提交的元数据和内容变化
git show [commit]
8. 显示某次提交发生变化的文件
git show --name-only [commit]
9. 显示某次提交时,某个文件的内容
git show [commit]:[filename]
10. 显示当前分支的最近几次提交
git reflog
11. 从本地master拉取代码更新当前分支:branch 一般为master
git rebase [branch]
远程同步
1. 下载远程仓库的所有变动
git fetch [remote]
2. 显示所有远程仓库
git remote -v
3. 显示某个远程仓库的信息
git remote show [remote]
4. 增加一个新的远程仓库,并命名
git remote add [shortname] [url]
5. 取回远程仓库的变化,并与本地分支合并
git pull [remote] [branch]
6. 上传本地指定分支到远程仓库
git push [remote] [branch]
7. 强行推送当前分支到远程仓库,即使有冲突
git push [remote] --force
8. 推送所有分支到远程仓库
git push [remote] --all
撤销
撤销暂存区reset,恢复工作区check out
git reset HEAD 重置当前分支的暂存区的内容与上一次commit保持一致,但工作区不变
git reset HEAD [file] 重置当前分支的暂存区的指定文件与上一次commit保持一致,但工作区不变
git reset --hard 重置当前分支的暂存区和工作区与上一次commit保持一致
git reset --hard [commit] 重置当前分支的HEAD为指定commit,同时重置暂存区和工作区与指定commit一致
git reset --keep [commit] 重置当前HEAD为指定commit,但保持暂存区和工作区不变
git reset [commit] 重置当前分支的HEAD为指定commit,同时重置暂存区,但工作区不变
git checkout -- [file] 恢复暂存区的指定文件到工作区,放弃工作区的修改
git checkout . 恢复暂存区的所有文件到工作区,放弃工作区的修改
git checkout [commit] [file] 恢复某个commit的指定文件到暂存区和工作区
补充【stash】
1. 暂时将未提交的变化存放在某个区域,稍后再取出
git stash list 查看stash的列表
git stash 将工作区内容暂时放在栈中
git stash apply <=> git stash apply statsh@{0} 取出最上面一条
git stash pop <=> git stash pop statsh@{0} 取出最上面一条,并且删除该stash
git stash pop statsh@{2} 取出第2条,并且删除该stash
# 新建一个commit,用来撤销指定commit
# 后者的所有变化都将被前者抵消,并且应用到当前分支
$ git revert [commit]