6 lines
85 B
Bash
Executable File
6 lines
85 B
Bash
Executable File
#!/bin/bash
|
|
git add .
|
|
msg="${1:-'update'}"
|
|
git commit -m "$msg"
|
|
git push origin main
|