7 lines
98 B
Bash
7 lines
98 B
Bash
#!/bin/bash
|
|
|
|
git add .
|
|
echo Write a short commit:
|
|
read commit
|
|
git commit -m " '$commit' "
|
|
git push |