- AMOGUIIS, Adriel Isaiah V.
- MANUEL, Sarah
- SO, Tiffany
- SUN, Benedict
- [In-Progress] Data Access Objects (DAOs)
- [Complete] Students
- [Complete] Courses
- [Complete] Degree
- [Complete] CourseDegree
- [Complete] Drop
- [Complete] Enrollment
- [Complete] Enroll
- [In-Progress] Java Server Pages (JSP) Modules
- [Complete] Student Management Module
- [Complete] Course Management Module
- [Complete] Enroll Module
- [Complete] Dropping Module
- [Complete] Report Module
- Git installation:
sudo apt install git -y
- If we get an apt error, we either wait a few minutes or kill the existing apt process.
- Git clone
- This command clones a git repository from Github given a link.
git clone LINK
- Staging files for commit
git add .
- Git commit
git commit -m "Message Title" -m "Message Body"
- Git push
git push -u origin master
- Git pull
git pull