Git
Contents
配置用户名和邮箱
|
|
查看当前git配置
|
|
撤销修改
|
|
生成秘钥私钥
|
|
查看当前的远程库
|
|
本地仓库关联远程仓库
|
|
删除远程仓库
|
|
生成秘钥私钥
|
|
本地仓库关联远程仓库
|
|
删除远程仓库
|
|
增加/删除文件
git add [file1] [file2]
添加指定文件到暂存区git add [dir]
添加指定目录到暂存区,包括子目录git add .
添加当前目录的所有文件到暂存区git add -A
添加所有修改和新增的文件到暂存区git add -p
添加每个变化前都要求确认rm filename
删除,之后需要使用git add filename
添加到暂存区,然后再commit提交,完成删除操作git rm [file1] [file2]
删除工作区文件,并将这次删除放入暂存区,如果删除之前修改过并且已经放在暂存区,则需要使用强制删除选项-f
git rm --cached [file]
停止追踪指定文件,但该文件会保留在工作区(现在已经有文件被add到暂存区了,使用这个命令可以停止追踪该文件,重新变成未add的状态)git mv [file-original] [file-renamed]
改名,并放入暂存区
代码提交
git commit -m [message]
提交暂存区到仓库区git commit [file1] [file2] ...-m [message]
提交暂存区的指定文件到仓库区git commit -a
提交工作区自上次提交之后的变化到仓库区git commit -v
提交时显示所有diff信息
分支
git branch [-v]
列出所有本地分支git branch -r
列出所有远程分支git branch -a
列出所有本地分支和远程分支git branch [branch-name]
新建一个分支,但依然停留在当前分支git checkout -b [branch]
新建一个分支并切换到该分支git branch [branch] [commit]
新建一个分支,指向指定commitgit branch --track [branch] [remote-branch]
新建一个分支,与指定的远程分支建立追踪关系git checkout [branch-name]
切换到指定分支,并更新工作区git checkout -
切换到上一个分支git branch --set-upstream [branch] [remote-branch]
建立追踪关系,在现有分支与指定的远程分支之间git merge [branch]
合并指定分支到当前分支git cherry-pick [commit]
选择一个commit,合并进当前分支git branch -d [branch-name]
删除分支git push origin --delete <branchName>
删除远程分支git push origin --delete [branch-name] / git branch -dr [remote/branch]
删除远程分支
合并分支
- 切换到接受修改的分支(被合并,增加新内容)上,
git checkout [被合并的分支名]
- 执行merge命令
git merge [有新内容的分支名]
标签
git tag
git tag [tag]
git tag [tag] [commit]
git tag -d [tag]
git push origin :refs/tags/[tagName]
git show [tag]
git push [remote] [tag]
git push [remote] --tags
git checkout -b [branch] [tag]
查看信息
git status
显示有变更的文件(工作区和暂存区)git log
显示当前分支的版本历史git log --stat
显示commit历史,以及每次commit发生变更的文件git log -S [keyword]
根据关键词搜索提交历史git log --follow [file] / git whatchanged [file]
查看某个文件的版本历史,包括文件名git log -p [file]
显示指定文件的每一次diffgit log --pretty=oneline
美化行内显示每个loggit log --oneline
行内显示log,与上面的区别是hash值显示7位git log -5 --pretty --oneline
显示过去5次提交,一行一个git blame [file]
显示指定文件是什么人在什么时候修改过git diff
显示暂存区和工作区的区别git diff --cached [file]
显示暂存区和上一次commit的差异git diff HEAD
显示工作区和当前分支最新commit的差异git diff [first-branch]...[second-branch]
显示两次提交之前的差异git reflog
显示当前分支的最近几次提交,显示移到到某次提交需要的次数(HEAD@{步数})
远程同步
git fetch [remote]
下载远程仓库的所有变动git remote -v
显示所有远程仓库(看到每个别名的实际仓库地址)git remote
显示当前的远程仓库git remote show [remote]
显示某个远程仓库的信息git remote add [shortname] [url]
增加一个新的远程仓库,并命名git pull [remote] [branch]
取回远程仓库的变化,并与本地分支合并git push [remote] [branch]
上传本地指定分支到远程仓库git push [remote] --force
强制推送当前分支到远程仓库,即使有冲突git push [remote] --all
推送所有分支到远程仓库
撤销
git checkout [file]
恢复存区的指定文件到工作区git check [commit] [file]
恢复某个commit的指定文件到暂存区和工作区git checkout
恢复暂存区的所有文件到工作区git reset [file]
重置暂存区的指定文件,与上一次commit保持一致,但工作区不变git reset --hard
重置暂存区与工作区,与上次commit一致git reset --hard 索引值
指针移到到索引所在位置git reset --hard HEAD^
后退一步git reset --hard HEAD~3
后退三步git reset
参数
-
--soft
仅仅在本地库移动HEAD指针 -
--hard
在本地库移动HEAD指针,重置暂存区 -
--mixed
在本地库移动HEAD指针,重置暂存区,重置工作区
git reset --keep [commit]
重置当前HEAD为指定commit,但保持暂存区和工作区不变git revert [commit]
新建一个commit,用来撤销指定commit,后者的所有变化都将被前者抵消,并且应用到当前分支
submodule
|
|
生成一个可供发布的压缩包
|
|
案例
-
修改commit信息
git commit --amend
-
远程分支强制覆盖本地
|
|
- 解决每次需要pull/push操作前需要输入密码的问题
|
|
- 跨分支查找commit
|
|
Author bingym
LastMod 2022-01-28