Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a7f1ba commit 872e2efCopy full SHA for 872e2ef
GRADUATED
@@ -65,6 +65,13 @@ one_topic () {
65
case " $topics" in *" $topic "*) return ;; esac
66
topics="$topics$topic "
67
68
+ contam_count=$(git rev-list "maint..$tip" | grep -F "$merges_to_master" | wc -l)
69
+ if test "$contam_count" != 0
70
+ then
71
+ echo "**** forked from master $topic ****"
72
+ return
73
+ fi
74
+
75
maint_count=$(git rev-list "maint..$tip" | wc -l)
76
if test "$maint_count" = 0
77
then
@@ -120,6 +127,8 @@ one_topic () {
120
127
esac
121
128
}
122
129
130
+merges_to_master="$(git rev-list --merges $base..master)"
131
123
132
git log --first-parent --min-parents=2 --max-parents=2 \
124
133
--format='%ci %H %P %s' "$base..master" | {
125
134
while read date time zone commit parent tip subject
0 commit comments