Try bg'ing into /dev/null

This commit is contained in:
Sage Vaillancourt 2021-10-06 13:52:23 -04:00
parent 182b3b7a8d
commit bf441aba5f
1 changed files with 1 additions and 1 deletions

2
.zshrc
View File

@ -69,7 +69,7 @@ function pushdot {
if [ $# -eq 0 ]; then
git commit -a && git push -u origin master &
else
git commit -a -m "$1" && git push -u origin master &
git commit -a -m "$1" && git push -u origin master | /dev/null &
fi
cd -
}