Adds remote unreachable message

This commit is contained in:
lhark 2015-06-09 11:49:53 +02:00
parent 89bff23c25
commit 2b7682cf9d

3
zshrc
View file

@ -16,6 +16,9 @@ export PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin:~/bin
cd /home/$USER/rc
# In case the network is down, don't lock the terminal
timeout 3 git fetch
if [ $? = 124 ] then
echo "Unable to reach $(git remote -v)"
fi
git_st=$(command git status --porcelain -b 2> /dev/null)
if $(echo "$git_st" | grep '^## .*ahead' &> /dev/null); then
echo"You have unpushed business in /home/$USER/rc"