mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-07-29 12:20:10 +00:00
Initial source commit.
This commit is contained in:
parent
f37edf0595
commit
5b815f9c16
1031 changed files with 74881 additions and 0 deletions
19
scripts/commit-and-push-all-sources.sh
Normal file
19
scripts/commit-and-push-all-sources.sh
Normal file
|
@ -0,0 +1,19 @@
|
|||
#!/bin/sh
|
||||
if [ "$#" -ne 1 ]; then
|
||||
echo "Usage: $0 <commit-message>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for dir in */ ; do
|
||||
if [ -d "$dir/.git" ]; then
|
||||
echo "Processing $dir"
|
||||
(
|
||||
cd "$dir" || exit
|
||||
git add .
|
||||
git commit -m "$1"
|
||||
git push
|
||||
)
|
||||
fi
|
||||
done
|
||||
|
||||
echo "Done!"
|
Loading…
Add table
Add a link
Reference in a new issue