hyprland-dotfiles/gitpush.sh

10 lines
115 B
Bash
Raw Normal View History

2023-02-02 11:27:22 +00:00
#!/bin/sh
#
echo -e "Enter the git commit message: \c "
read comment
git add *
git commit -m "$comment"
git push