本文随时更新,记录常用的 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/guo/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 +数字
就显示出了对应个的内容
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-off 介绍
网友评论