From 57a529a2b276e0df01a45270a892c92a2c17ddef Mon Sep 17 00:00:00 2001 From: Rudxain <76864299+Rudxain@users.noreply.github.com> Date: Mon, 25 May 2026 17:46:52 -0400 Subject: [PATCH] perf(git-locked): replace `sed` by `cut` --- bin/git-locked | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-locked b/bin/git-locked index 2fbaee9d..25ed5ffc 100755 --- a/bin/git-locked +++ b/bin/git-locked @@ -1,3 +1,3 @@ #!/usr/bin/env bash -git ls-files -v | grep ^S | sed -e 's|S ||' +git ls-files -v | grep ^S | cut -c3-