10 lines
115 B
Bash
10 lines
115 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
|
||
|
echo -e "Enter the git commit message: \c "
|
||
|
read comment
|
||
|
git add *
|
||
|
git commit -m "$comment"
|
||
|
git push
|
||
|
|