Run pushdot in background.
This commit is contained in:
parent
def543131b
commit
182b3b7a8d
4
.zshrc
4
.zshrc
|
@ -67,9 +67,9 @@ fi
|
||||||
function pushdot {
|
function pushdot {
|
||||||
cd ~/.dotfiles &&
|
cd ~/.dotfiles &&
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
git commit -a && git push -u origin master
|
git commit -a && git push -u origin master &
|
||||||
else
|
else
|
||||||
git commit -a -m "$1" && git push -u origin master
|
git commit -a -m "$1" && git push -u origin master &
|
||||||
fi
|
fi
|
||||||
cd -
|
cd -
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue