Added
This commit is contained in:
parent
f033992fc0
commit
cd1c01ea00
6
.zshrc
6
.zshrc
|
@ -128,6 +128,10 @@ export EDITOR='vim'
|
||||||
|
|
||||||
function pushdot {
|
function pushdot {
|
||||||
cd ~/.dotfiles &&
|
cd ~/.dotfiles &&
|
||||||
git add .* && git commit && git push -u origin master
|
if [ $# -eq 0 ]; then
|
||||||
|
git add .* && git commit && git push -u origin master
|
||||||
|
else
|
||||||
|
git add .* && git commit -m "$1" && git push -u origin master
|
||||||
|
fi
|
||||||
cd -
|
cd -
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue