Skip to content

Latest commit

 

History

History
40 lines (36 loc) · 1.02 KB

README.md

File metadata and controls

40 lines (36 loc) · 1.02 KB

CCINFOM SQL APPLICATION

Written && Developed By:

  1. AMOGUIIS, Adriel Isaiah V.
  2. MANUEL, Sarah
  3. SO, Tiffany
  4. SUN, Benedict

Development Tracker

  • [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

Basics of Git on Ubuntu:

  • 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