summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Küch <post@matthias-kuech.de>2021-02-12 12:23:30 +0100
committerJesse Duffield <jessedduffield@gmail.com>2021-02-16 13:57:28 -0800
commit9df133ed8c3b1fc813dbee09a34455ef6be51680 (patch)
treea525343e19c3e2f27df0aae1453d3285cb493bcd
parent50dd7b00c35b2c1e049b329c3a3baca5bc3e6efa (diff)
Fix pattern in commitPrefix example
-rw-r--r--docs/Config.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Config.md b/docs/Config.md
index 2663336c4..4fd35a069 100644
--- a/docs/Config.md
+++ b/docs/Config.md
@@ -328,7 +328,7 @@ Example:
git:
commitPrefixes:
my_project: # This is repository folder name
- pattern: "^\\w+\\/(\\w+-\\w+)"
+ pattern: "^\\w+\\/(\\w+-\\w+).*"
replace: "[$1] "
```