mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-10 18:55:03 -04:00
6 lines
No EOL
144 B
Bash
Executable file
6 lines
No EOL
144 B
Bash
Executable file
#!/bin/bash
|
|
input_variable = 'test'
|
|
read -p "Commit message?" input_variable
|
|
git add -A
|
|
git commit -m "$input_variable"
|
|
git push origin master |