I'm trying to add a function to my bash_profile
for msysgit:
function git-unpushed {
brinfo=$(git branch -v | grep git-branch-name)
if [[ $brinfo =~ ("[ahead "([[:digit:]]*)]) ]]
then
echo "(${BASH_REMATCH[2]})"
fi
}
But I get the following error:
bash: conditional binary operator expected`
bash: syntax error near =~'
From what I can find, the "equals tilde" operator (=~
) evaluates as regex in bash.
Why is =~
is throwing an error?
UPDATE: Here's a screenshot of inputting it manually (this is running sh.exe):
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…