We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f352cd commit 3fd5144Copy full SHA for 3fd5144
extensions/git/scripts/bash/create-new-feature.sh
@@ -272,7 +272,7 @@ generate_branch_name() {
272
if ! echo "$word" | grep -qiE "$stop_words"; then
273
if [ ${#word} -ge 3 ]; then
274
meaningful_words+=("$word")
275
- elif echo "$description" | grep -q "\b${word^^}\b"; then
+ elif echo "$description" | grep -qw -- "${word^^}"; then
276
277
fi
278
0 commit comments