Fix the git-clean command

This commit is contained in:
Andreas Zweili 2022-10-07 10:48:15 +02:00
parent b8a82d1b58
commit 1fbe7032f0
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@
git-clean = ''
git fetch --all -p;
git branch --merged origin/master | grep -v "\*" | xargs git branch -d;
git branch -vv | grep -v '\[origin/'| grep -v "\*" | awk '{ print $1; }' | xargs -r git branh -D;
git branch -vv | grep -v '\[origin/'| grep -v "\*" | awk '{ print $1; }' | xargs -r git branch -D;
'';
};
}