Add git-pending script

This commit is contained in:
Talia 2020-07-17 13:44:59 +02:00
parent 1d590a91ee
commit 940ab2e845

18
bin/git-pending Executable file
View file

@ -0,0 +1,18 @@
#!/bin/sh
for line in $@
do
dir=$(pwd)
cd "$line"
if git log -0 2>/dev/null
then
stat=$(git branch -vv | grep -P '^\*' | grep -Po '\[.*\]')
if echo $stat | grep -P 'behind' > /dev/null
then echo behind $line
fi
if echo $stat | grep -P 'ahead' > /dev/null
then echo ahead $line
fi
fi
cd $dir
done