Hyprland-dotfiles/gitpush.sh

10 lines
116 B
Bash
Raw Normal View History

2023-02-02 12:27:22 +01:00
#!/bin/sh
#
echo -e "Enter the git commit message: \c "
read comment
2023-02-08 16:14:43 +01:00
git add -A
2023-02-02 12:27:22 +01:00
git commit -m "$comment"
git push