mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-12 04:08:40 +00:00
10 lines
182 B
Bash
10 lines
182 B
Bash
#!/bin/bash
|
|
|
|
MSG="$1"
|
|
|
|
git submodule foreach git add .
|
|
git submodule foreach "git commit -m '${MSG}' || true"
|
|
git submodule foreach git push
|
|
git add .
|
|
git commit -m '${MSG}'
|
|
git push |