Welcome to my Attendance Management Project repository! This project is part of the Kalvium OOP course, Session 1: Project Setup and Orientation.
Project Structure:
S_Abir_S86_Attendance_management_project/ ├── src/ │ └── com/ │ └── school/ │ └── Main.java ├── README.md
🛠️ How to Compile and Run
Navigate to the project root directory (the one containing src and README.md).
Compile the code:
javac src/com/school/Main.java Run the program:
java -cp src com.school.Main Expected Output:
Welcome to the School Attendance System Project! Session 1: Project Setup and Orientation Complete.
📝 Git Workflow Configure your Git identity
git config --global user.name "" git config --global user.email "" Initialize, add, and commit your code
git checkout -b part-01 git add . git commit -m "feat: Initial project setup (Part 1)" Add the remote repository and push
git remote add origin <your-repo-url.git> git push -u origin part-01