git 如何查看一个分支中的哪些提交不在另一个分支中?

2ekbmq32  于 2022-12-02  发布在  Git
关注(0)|答案(6)|浏览(371)

我有两个分支develnext。在devel中,我有或多或少的大量提交。一些提交是next中挑选的。我还添加了一些提交到next,合并到devel中。
现在我想看看next中缺少了什么,这样我就可以在把它们带到next之前详细地测试这些更改。现在我的问题是,我如何才能看到哪些提交在devel中,而不是在next中?

m4pnthwp

m4pnthwp1#

@Mark Longair nailed it in his answer here, but I'd like to add some additional insight.

My situation:
I made a big feature_branch with 30 commits and opened a Pull Request (PR) on GitHub to merge it into master . Branch master changed a ton underneath me, and received 200 commits my feature_branch didn't have. To resolve conflicts I did git checkout feature_branch and git merge master to merge master 's changes into my feature_branch . I chose to merge rather than rebase onto latest master so I would have to resolve conflicts only one single time instead of potentially 30 times (once for each of my commits). I didn't want to squash my 30 commits into 1 first and then rebase onto the latest master because that might wipe away GitHub review comment history in the PR. So, I merged master into my feature branch and resolved conflicts 1 single time. All was well. My PR, however, was too big for my colleagues to review. I needed to split it up. I went to squash my 30 commits and OH NO! WHERE ARE THEY? THEY ARE ALL INTERMINGLED WITH master 's 200 recent commits now because I merged master into my feature_branch ! WHAT DO I DO?

git cherry usage in case you want to try to git cherry-pick individual commits:

git cherry to the rescue (sort of)!
To see all the commits that are in feature_branch but NOT in master I can do:

git checkout feature_branch
git cherry master

OR, I can check commits from ANY branch withOUT ensuring I'm on feature_branch first by doing git cherry [upstream_branch] [feature_branch] , like this. Again, this checks to see which commits ARE in feature_branch but are NOT in upstream_branch ( master in this case):

git cherry master feature_branch

Adding -v also shows the commit message subject lines:

git cherry -v master

Piping to "word count" "-lines" ( wc -l ) counts how many commits there are:

git cherry master | wc -l

You can compare this count against the commit number shown in your GithHub PR to feel better about knowing git cherry really is working. You can also compare the git hashes one by one and see they match between git cherry and GitHub. Note that git cherry will NOT count any merge commits where you merged master into feature_branch , but GitHub WILL. So if you see a small discrepancy in the count, search the GitHub PR commit page for the word "merge" and you'll probably see that's the culprit which is not showing up in git cherry . Ex: a commit titled "Merge branch 'master' into feature_branch" will show up in the GitHub PR but not when you run git cherry master feature_branch . This is fine and expected.
So, now I have a means of finding out which diffs I may want to cherry-pick onto a fresh feature branch to split up this diff: I can use git cherry master feature_branch locally, or look at the commits in the GitHub PR.

How squashing could help--if only we could squash:

An alternative, however, to split up my big diff is to squash all 30 of my commits into one, patch that onto a new feature branch, soft reset the patch commit, then use git gui to add pieces file by file, chunk by chunk, or line by line. Once I get one sub-feature, I can commit what I've added then check out a new branch, add some more, commit, check out a new branch, etc, until I have my big feature broken out into several sub-features. The problem is that my 30 commits are intermingled with the other 200 commits from other people due to my git merge master into my feature_branch , so rebasing is therefore impractical, as I'd have to sift through 230 commits to re-order and squash my 30 commits.

How to use a patch file as a much easier replacement for squashing:

A work-around is to simply obtain a patch file containing a "squash-equivalent" of all 30 of my commits, patch it onto a new fork of master (a new sub-feature-branch), and work from there, as follows:

git checkout feature_branch
# ensure I have the latest changes from master merged into feature_branch
git merge master 
# Obtain a patch file, which is the equivalent of a squash of my 30 commits into 1 commit:
git diff master..feature_branch > ~/mypatch.patch
git checkout master
# Create a new, sub-feature branch
git checkout -b feature_branch2
# Patch the 30 commit patch file onto it:
git apply ~/mypatch.patch

Now I have my 30-commit patch all applied locally, but unstaged and uncommitted.

Now use git gui to add files, chunks, and/or lines and break up your big PR or "diff":

  • Note that if you don't have git gui , you can easily install it in Ubuntu with sudo apt install git-gui .*

I can now run git gui and start adding files, chunks, and/or lines (by right-clicking in the git GUI program), and break up the 30 commit feature branch into sub branches as described just above, repeatedly adding, committing, then forking a new feature branch and repeating this cycle until all changes have been added to a sub-feature-branch and my 30-commit feature is successfully broken up into 3 or 4 sub-features. I can open up a separate PR for each of these sub-features now, and they will be easier for my team to review.

References:

  1. Create patch or diff file from git repository and apply it to another different git repository
egmofgnx

egmofgnx2#

很少使用的命令git cherrydocs)向您显示尚未被挑选的提交。
简而言之:
第一个
输出示例:

+ 492508acab7b454eee8b805f8ba906056eede0ff feat: make bazzable
- 5ceb5a9077ddb9e78b1e8f24bfc70e674c627949 hotfix: off-by-one
+ b4459544c000f4d51d1ec23f279d9cdb19c1d32b feat: add bar
+ b6ce3b78e938644a293b2dd2a15b2fecb1b54cd9 feat: add foo

+表示提交仅在next,但不在main
-表示提交是在两个分支中
如果你希望提交没有主题行,请删除-v

+ 492508acab7b454eee8b805f8ba906056eede0ff
- 5ceb5a9077ddb9e78b1e8f24bfc70e674c627949
+ b4459544c000f4d51d1ec23f279d9cdb19c1d32b
+ b6ce3b78e938644a293b2dd2a15b2fecb1b54cd9
qhhrdooz

qhhrdooz3#

同样,你可以用它来得到一个分支之间没有共享的 * 实际 * 不同提交的列表:

git log --left-right --graph --cherry-pick --oneline main...next

输出示例:

> 492508ac (HEAD -> next) feat: make bazzable
> 5ceb5a90 hotfix: off-by-one
> b4459544 feat: add bar
> b6ce3b78 (origin/add-foo, add-foo) feat: add foo

关键词是--cherry-pick
--cherry-pick
当提交集受到对称差的限制时,忽略任何引入了与“另一边”的另一个提交相同的修改的提交。例如,如果你有两个分支,A和B,通常的方法是用--left-right,就像上面的例子中描述的那个选项一样,但是它显示的是从另一个分支中挑选出来的提交(例如,“3rd on B”可能是从分支A中挑选出来的)。使用此选项,这样的提交对将被排除在输出之外。

更新正如评论中提到的,最近的git版本增加了--cherry-mark

--cherry-mark
类似于--cherry-pick(见下文),但用=标记等价的提交,而不是省略它们,用+标记不等价的提交。

mefy6pfw

mefy6pfw4#

你可以尝试做git日志子集:

git log --oneline devel ^next
ijnw1ujt

ijnw1ujt5#

不如

git log next..devel

结果与Byran的答案类似(提交顺序不同),但我们的两个答案都会产生不同分支之间的提交,而不是只显示一个分支中的内容,而不显示另一个分支中的内容。

oxosxuxt

oxosxuxt6#

要获得没有集成到发布分支(next)的提交列表,你可以用途:

git rev-list --reverse --pretty="TO_TEST %h (<%ae>) %s" --cherry-pick --right-only origin/release_branch...origin/development_branch | grep "^TO_TEST " > NotIntegratedYet.txt

有关详细信息,请查看git-rev-list

相关问题