Files
calendar/git-helper
T
2026-08-03 12:12:36 +02:00

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 ~