1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-25 12:24:47 +02:00

Fix pattern in commitPrefix example

This commit is contained in:
Matthias Küch 2021-02-12 12:23:30 +01:00 committed by Jesse Duffield
parent 50dd7b00c3
commit 9df133ed8c

View File

@ -328,7 +328,7 @@ Example:
git:
commitPrefixes:
my_project: # This is repository folder name
pattern: "^\\w+\\/(\\w+-\\w+)"
pattern: "^\\w+\\/(\\w+-\\w+).*"
replace: "[$1] "
```