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