diff --git a/Helper/Scripts/commit.sh b/Helper/Scripts/commit.sh new file mode 100644 index 0000000..c63d189 --- /dev/null +++ b/Helper/Scripts/commit.sh @@ -0,0 +1,10 @@ +#!/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 \ No newline at end of file