Truncate branch names at 72 chars

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-01-07 21:49:27 +01:00
parent 53bc6d62bd
commit 1efe7fa3ca
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

View File

@ -2,4 +2,4 @@
set -euo pipefail
git checkout -b $(slugify -l 35 "$@")
git checkout -b $(slugify "$@" | cut -c 1-72)