1
0
Files
Dotfiles/Scripts/pushBlog.sh

10 lines
108 B
Bash
Executable File

CURRENT_PATH=$(pwd)
cd $HOME/myHome/Projects/Blog
git add .
git commit -m "$1"
git push
cd $CURRENT_PATH