Commit e467164 1 parent 50f5774 commit e467164 Copy full SHA for e467164
File tree 2 files changed +9
-8
lines changed
2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ $ brew install git-when-merged
12
12
```
13
13
14
14
Usage
15
- ----------
15
+ -----
16
16
git when-merged [OPTIONS] COMMIT [BRANCH...]
17
17
18
- Find when a commit was merged into one or more branches. Find the merge
19
- commit that brought COMMIT into the specified BRANCH(es). Specificially , look
20
- for the oldest commit on the first-parent history of BRANCH that contains the
21
- COMMIT as an ancestor.
18
+ Find the merge commit that brought COMMIT into the specified
19
+ BRANCH(es). Specifically , look for the oldest commit on the
20
+ first-parent history of each BRANCH that contains the COMMIT as an
21
+ ancestor.
22
22
23
23
Options:
24
24
-h, --help show this help message and exit
@@ -61,7 +61,8 @@ Examples:
61
61
git when-merged 0a1b -r feature-1 # If merged indirectly, show all
62
62
# merges involved.
63
63
64
- git when-merged 0a1b -d feature-1 # Show diff for each merge commit
64
+ git when-merged 0a1b -l feature-1 # Show log for the merge commit
65
+ git when-merged 0a1b -d feature-1 # Show diff for the merge commit
65
66
git when-merged 0a1b -v feature-1 # Display merge commit in gitk
66
67
67
68
Configuration:
Original file line number Diff line number Diff line change 22
22
"""Find when a commit was merged into one or more branches.
23
23
24
24
Find the merge commit that brought COMMIT into the specified
25
- BRANCH(es). Specificially , look for the oldest commit on the
26
- first-parent history of BRANCH that contains the COMMIT as an
25
+ BRANCH(es). Specifically , look for the oldest commit on the
26
+ first-parent history of each BRANCH that contains the COMMIT as an
27
27
ancestor.
28
28
29
29
"""
You can’t perform that action at this time.
0 commit comments