# Yutnori
git rm -r frontend-swing # or frontend-fx depending on what you replace
git commit -m "remove old frontend module"git subtree add --prefix=frontend-swing https://github.com/Yut-nori/Yutnori_FE.git main --squashgit subtree add --prefix=frontend-fx https://github.com/Yut-nori/Yutnori_FE_FX.git main --squashgit fetch frontend
git subtree add --prefix=frontend <branch-name> --squashgit fetch backend
git subtree add --prefix=backend backend <branch-name> --squashgradlew.bat :frontend:shadowJar- Use separate directories like
frontend-swing/andfrontend-fx/to avoid subtree conflict. - Always use
--squashunless you want to preserve full commit history from sub-repositories.