This repository serves as the main project hub, bringing together aid-frontend and aid-backend as Git submodules.
It also contains a docs/ folder for project documentation.
SKKU Scholarship Assistant is a project designed to make it easier for Sungkyunkwan University (SKKU) students to gather and check scholarship-related notices and announcements.
project/
├─ frontend/ # Submodule: https://github.com/SKKU-aid/aid-frontend.git
├─ backend/ # Submodule: https://github.com/SKKU-aid/aid-backend.git
└─ docs/ # Documentation folder
- Clone the main repository:
git clone https://github.com/SKKU-aid/project.git cd project - Initialize and update submodules:
git submodule update --init --recursive
- This command pulls in the code from
aid-frontendandaid-backendinto their respective folders.
- This command pulls in the code from
- If you need to pull the latest commits from the submodule repositories (assuming you have them set to track a specific branch), run:
cd frontend # or backend git checkout main git pull origin main cd .. git add frontend # or backend git commit -m "Update submodule to latest commit" git push origin main
- Other team members should then perform
git submodule update --init --recursiveagain to get the updated submodule references.
- The
docs/folder holds any project documentation.