14 lines
132 B
Bash
14 lines
132 B
Bash
#!/bin/bash
|
|
|
|
cd ~/Desktop/calender || exit
|
|
|
|
git add .
|
|
|
|
read -p "commit msg: " COMMITMSG
|
|
|
|
git commit -m "$COMMITMSG"
|
|
|
|
git push
|
|
|
|
cd ~
|