From faf0c5b23da303ea43fc9fd687f60224e623221b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB=20=D0=9A=D0=B0=D0=BF?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=D0=BA=D0=BE?= Date: Sun, 9 Nov 2025 06:39:21 +0300 Subject: [PATCH] space --- dbg.clone | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbg.clone b/dbg.clone index 57b96d1..454f048 100755 --- a/dbg.clone +++ b/dbg.clone @@ -18,8 +18,8 @@ git fetch --all # Find out the latest commit in the whole repo git branch -av --sort=-committerdate -git branch -av --sort=-committerdate | head -n1 -cmt=`git branch -av --sort=-committerdate | head -n1 | cut -d' ' -f4` +git branch -av --sort=-committerdate | tr -s ' ' | head -n1 +cmt=`git branch -av --sort=-committerdate | tr -s ' ' | head -n1 | cut -d' ' -f4` echo "Latest commit: $cmt" # Switch to the latest branch