Hyprland-dotfiles/gitpush.sh

8 lines
106 B
Bash
Raw Normal View History

2023-02-02 06:27:22 -05:00
#!/bin/sh
2023-02-13 07:37:10 -05:00
read -p "Enter the git commit message: " comment
2023-02-08 10:14:43 -05:00
git add -A
2023-02-02 06:27:22 -05:00
git commit -m "$comment"
git push