#!/bin/bash

cd ~/Desktop/calender || exit

git add .

read -p "commit msg: " COMMITMSG

git commit -m "$COMMITMSG"

git push

cd ~
