本文随时更新,记录常用的 git 操作,记得收藏
1.回滚某个文件
Overwrite the contents of the files that match the pathspec.
When the<tree-ish>
(most often a commit) is not given, overwrite working tree with the contents in the index.
When the<tree-ish>
is given, overwrite both the index and the working tree with the contents at the<tree-ish>
.
git checkout* [-f|--ours|--theirs|-m|--conflict=<style>] [<tree-ish>] [--] <pathspec>…
回滚项目中某个文件,比如 reverse.h
:
// 查看该文件的 commit 历史
git log 路径/reverse.h
// 选择某一个 commit:d114be 强制覆盖本地文件
git checkout d114be 路径/reverse.h
// 提交回滚
//git commit -m '回滚 reverse.h'
2.查看某个人的提交
git log --oneline --author=名字
3.查看某个人在某个时间段内的提交
//日期格式 年-月-日 ,比如 2100-12-01
git log --author="XXX" --after="xxxx-xx-xx 00:00:00" --before="xxxx-xx-xx 23:59:59"
4. 查看某个commit
// 比如要查看的某个 commit 号是 c1ff5c9482
git show c1ff5c9482
5. 不track某个文件或文件夹
// add 之后,可以使用下面的命令,去掉对某个文件目录的记录
// logs/ 文件夹及其下面的文件都不被 track.
// 同理,把 logs/ 换成其他文件,就会不 track 该文件
// 这个命令会删除文件
$ git rm -r --cached logs/
// 这个不会删除本地文件 ps 试了下也会删除,但是 git status 看下 发现也没有什么改动记录
$ git rm --cached readme1.txt
6.git 设置和取消代理
git config --global https.proxy http://127.0.0.1:8123
git config --global https.proxy https://127.0.0.1:8123
git config --global --unset http.proxy
git config --global --unset https.proxy
npm config delete proxy
执行 git push origin version_52c7a1e849
报错:
fatal: unable to access 'http://gitlab.ximalaya.com/flutter/FlutterKit-iOS.git/': Failed to connect to 127.0.0.1 port 8123: Connection refused
查看当前代理:env|grep -i proxy
。然后可以执行上面的取消代理命令。关机重启,就可以了。
7.Updates were rejected
Updates were rejected because the tip of your current branch is behind hint: its remote counterpart
执行下面命令,会强制设置本地分支和远程分支指向一致,但会清除本地分支的改动。最好先 checkout
到一个新分支,然后执行下面命令,再把新分支的代码合过来
git reset --hard origin/branch-name
删除.DS_Store
删除冲突的 DS_Store
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
8.回退某个文件
git log 文件名
git reset e475f40a37df7074dd5fe46ca88316a5c3628a21 /Users/xx/Documents/iOS/FlutterFolder/qunfeng_flutter/lib/route/route.dart
9.删除某个文件的cache
git rm -r --cached XMOpenPlatform.xcworkspace/xcuserdata
10.强制本地文件与远程文件保持同步
git fetch --all
git reset --hard origin/{{your branch name}}
本地也修改了 文件 但是 想放弃修改,并且和远程的保持一致,那么可以用这个命令
如果想让远程分支和自己本地分支一致,可以执行下面命令:
git push origin {branch name} --force
12.清理某个pod库的cache
想清理某个 pod 库的 cache,一般可以执行下面命令:
pod cache clean 库名称
但是上面的语义化语法 对于 pod 来说会造成理解上的问题,可能会输出如下:
1: 库名称 v1.0.2 (External)
2: 库名称 v1.0.2 (External)
...
...
6: 库名称 v1.0.2 (External)
所以要彻底清除这个库 加上 --all
:
pod cache clean --all # will clean all pods
pod cache clean '库名称' --all # will remove all installed '库名称' pods
如果想知道 pod 库的缓存地址,可以使用:
pod cache list
上面命令会输出所有 pods 的缓存地址:
...
...
库名称:
- Version: 0.2.5
Type: Release
Spec: /Users/xx/Library/Caches/CocoaPods/Pods/Specs/Release/库名称/0.2.podspec.json
Pod: /Users/xx/Library/Caches/CocoaPods/Pods/Release/库名称/0.2.5-029ab
...
...
根据输出的路径,可以删除库路径下的文件,效果和 --all
一样
13. github 的库添加到 gitlab
从 github
上 clone 你想自行维护的库,然后添加到 gitlab
:
git remote add gitlab http://gitlab.xxx.com/xx/xxx.git
然后推送到 gitlab
git push gitlab master
14. 查看某一行的提交
命令:
git blame
输出格式为:
commit号 (作者 xx年-xx月-xx日 xx时:xx分:xx秒 时区 行号)
如下:
355500d0 (xx 2019-11-08 17:58:04 +0800 97) - (void)prepare {
a5e305b3 (xx 2019-11-14 17:02:20 +0800 98) // load properties saved
a5e305b3 (xx 2019-11-14 17:02:20 +0800 99) self.realSyncPoint = [self doubleForKey:kRealSyncPointKey];
9072b0e5 (xx 2019-11-11 20:27:06 +0800 100) self.syncPoint =
15. 删除项目中 git 信息
find -name .git | xargs rm -rf and find -name .gitignore | xargs rm -rf
16. submodule
项目中存在独立的子模块时,我们可以通过 submodule 的方式来管理
- 添加方式:
git submodule add https://github.com/xxx/xxxx.git
- 克隆含有子模块的项目:
// 首次 clone 和平时一样先 clone 主项目
git clone https://github.com/主项目
// 再执行子模块的更新 --recursive 表示也要初始化、抓取并检出任何嵌套的子模块
git submodule update --init --recursive
//或者一步到位,上面的两句可以简化成一句:
git clone --recurse-submodules https://github.com/主项目
后面拉取子模块的时候,只执行下面命令就可以了:
git submodule update --init --recursive
https://git-scm.com/book/zh/v2/Git-%E5%B7%A5%E5%85%B7-%E5%AD%90%E6%A8%A1%E5%9D%97
https://devconnected.com/how-to-add-and-update-git-submodules/
17. git rev-parse
- 获取当前分支名
git rev-parse --abbrev-ref HEAD
- 获取 HEAD 指向的commit 的 hash
git rev-parse HEAD
比如当前 HEAD:
commit 3d40b3c73064ce39bc06eb058f6d91fdaffeb17d (HEAD -> devops, origin/task, origin/devops)
Author: xx
Date: Wed Oct 13 18:19:53 2021 +0800
[MDF] Bugtags 3.3.0
执行上面命令会获取 3d40b3c73064ce39bc06eb058f6d91fdaffeb17d
- 获取已有分支
git rev-parse --symbolic --branches
18.回退
如果文件只执行了 add,但是没有 commit。这时 执行了 reset 操作。下面这个命令会把未 commit 的内容显示出来:
git fsck --lost-found
然后,执行
git show +数字
就显示出了对应个的内容
或者通过下面命令列出60条修改记录
find .git/objects -type f | xargs ls -lt | sed 60q
输出如下:
-r--r--r-- 1 3613 11 15 14:55 .git/objects/89/8157c195fff92f61074e0c9d52a9808a064f0a
-r--r--r-- 1 18671 11 15 14:55 .git/objects/2f/0cb30430b2253305cc1b07311b668d31aaad74
-r--r--r-- 1 21080 11 15 14:55 .git/objects/57/c780e529bb6e4a6081cdec97a98ddd12892c8a
比如现在拿第一个文件的 ID: 898157c195fff92f61074e0c9d52a9808a064f0a
把这个ID 的内容输出到指定文件,比如桌面上的 a.txt 文件:
git cat-file -p 898157c195fff92f61074e0c9d52a9808a064f0a > /Users/xxx/Desktop/a.txt
a.txt 里面的内容就是被修改文件的所有内容,复制出来粘贴替换
19.合并
以我们的本地分支为准,进行合并,保留我们本地分支的文件和代码
//merges the another branch to current local branch, but keeps all files of current branch and another branch
git merge --no-ff anotherBranch
适用场景是,比如 master
分支由于有 bug
, 暂时做了版本回退并上线。我们在新分支上改完bug
后,需要合并 master
的代码,由于 在master
上做了回退,这时候,如果直接 merge
做的是 fast-forward,会导致我们新加的代码丢失。我们的需求是合并的时候,保留本地以及 master 的修改。--no-off
不会自动commit,只是把两个分支上的修改指针进行合并,保留某个文件上的所有修改,这时你可以查看代码决定要保留哪些修改。
--no-ff 介绍
20. 从老的分支创建一个新的空分支
git checkout --orphan EmptyBranch
该命令会创建一个名为 EmptyBranch
的分支,并且该分支下有前一个分支下的所有文件。
--orphan
的说明:
Create a new orphan branch, named <new_branch>, started from <start point> and switch to it. The first commit made on the new branch will have no parents and it will be the root of a new history totally disconnected from all the other branchs and commits.
新的分支没有任何提交历史,所以该分支下的文件可以全部删除,就是一个空的分支了
执行删除命令:
git rm -rf .
提交分支
git commit -am "new empty branch"
随便创建一个文件,然后提交,push 到该分支,就可以在远程显示出这个空分支了
执行下面命令查看所有本地和远程分支:
git branch -a
21. 清除文件追踪
想清除所有的文件追踪,比如有些老的项目很多文件都没有加到 .gitignore
,一个个删除文件追踪比较麻烦,可以使用命令删除所有的文件追踪,然后再编辑 .gitignore
文件,再次提交,生成新的文件追踪:
//清空缓存
git rm -r --cached .
//重新添加
git add -A
对于已经纳入版本管理的问题,修改 .gitignore
会不生效,所以上面的方法比较方便
如果想清除某一个文件的追踪,那么后面拼上这个文件的名称或路径:
git rm -r --cached README
22. cherry-pick
场景一:合并某几个 commits 到其他分支
比如合并 feature 上的几个 commits 到 master 分支:
//切到 master 分支
git checkout master
//假设要合并的 commit 是 aaa、bbb、ccc
git cherry-pick aaa bbb ccc
参考:https://www.ruanyifeng.com/blog/2020/04/git-cherry-pick.html
场景二:
假设 公共分支master 的某个 commit (比如 abcd 被污染了,提交日期是今天下午2点),但这个 commit 之后被 merge 进去的 commits 是正常的。这时候,我们在 master 分支log 出所有的commit,找到 abcd。假设早于 abcd 的commits 我们认为是没问题的,我们在这些没问题的 commits 中,选出最晚的一个 commit 假设是abcxx(假设提交日期是今天下午1点),从 abcxx 切出新分支 ,然后把后面正常的 commits(不管是远程的还是本地的) 分别转移到新分支,这时候需要 cherry-pick
命令:
- 先查看当前有问题的公共分支的 log,记下 abcd 之后所有没有问题的 commit hash
- 从我们认为没问题的commit 切出新分支
newBranch
:git checkout abcxx -b newBranch
- 把abcd 之后所有没问题的 commit 都转移到当前新分支:
git cherry-pick 'hash1'
就把对应的 commit hash1 转移到了新分支newBranch
- 可以一次转移多个:
git cherry-pick <hash1> <hash2>
- 新分支
newBranch
此时是没问题的分支了。如果想继续使用master
分支,那么先切到master
分支,强制回退到abcxx,接着把newBranch
合并到master
分支,然后强制推送到远端:
git checkout master
git reset --hard abcxx
git merge newBranch
git push origin master --force
- 其他人重新同步
master
分支,然后用cherry-pick
的方式,把本地没有push 的 commits,一个个同步到master
分支。然后 push 就可以了
23. push 被拒绝
! [rejected] dev -> dev (non-fast-forward)
error: failed to push some refs to 'code.wifi.com:tutu-client/tutu-pods/movie.sdk.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again
先执行:
git pull --rebase
如果执行后又冲突,再执行:
git rebase --continue
然后再次进行push操作