Files
simple64/pull_repos.sh
T
2020-10-09 19:55:34 -07:00

37 lines
1.6 KiB
Bash
Executable File

git remote add mupen64plus-core https://github.com/mupen64plus/mupen64plus-core.git
git fetch mupen64plus-core
git merge -s subtree mupen64plus-core/master --allow-unrelated-histories --squash
git commit -m "update core"
git remote add GLideN64 https://github.com/loganmc10/GLideN64.git
git fetch GLideN64
git merge -s subtree GLideN64/NUI --allow-unrelated-histories --squash
git commit -m "update gliden64"
git remote add mupen64plus-gui https://github.com/m64p/mupen64plus-gui.git
git fetch mupen64plus-gui
git merge -s subtree mupen64plus-gui/master --allow-unrelated-histories --squash
git commit -m "update gui"
git remote add mupen64plus-audio-sdl2 https://github.com/m64p/mupen64plus-audio-sdl2.git
git fetch mupen64plus-audio-sdl2
git merge -s subtree mupen64plus-audio-sdl2/master --allow-unrelated-histories --squash
git commit -m "update audio"
git remote add mupen64plus-rsp-hle https://github.com/mupen64plus/mupen64plus-rsp-hle.git
git fetch mupen64plus-rsp-hle
git merge -s subtree mupen64plus-rsp-hle/master --allow-unrelated-histories --squash
git commit -m "update rsp hle"
git remote add mupen64plus-input-qt https://github.com/m64p/mupen64plus-input-qt.git
git fetch mupen64plus-input-qt
git merge -s subtree mupen64plus-input-qt/master --allow-unrelated-histories --squash
git commit -m "update input qt"
git remote add mupen64plus-input-raphnetraw https://github.com/loganmc10/mupen64plus-input-raphnetraw.git
git fetch mupen64plus-input-raphnetraw
git merge -s subtree mupen64plus-input-raphnetraw/sdl2 --allow-unrelated-histories --squash
git commit -m "update raphnet"
git push origin master