8 lines
106 B
Bash
Executable File
8 lines
106 B
Bash
Executable File
#!/bin/sh
|
|
|
|
read -p "Enter the git commit message: " comment
|
|
git add -A
|
|
git commit -m "$comment"
|
|
git push
|
|
|