Organization GitHub Repository
Welcome to the official GitHub organization for the Capstone and IT Projects course. This space hosts projects and collaborative resources. Follow the guidelines below to submit work and contribute effectively.
- Ensure you’ve:
- Joined this GitHub organization (accept the invite).
- Installed Git and a code editor (VS Code, Keil, etc.).
- Create a new repository within orgainisation
# Clone the repository
git remote add origin [link to your new repo]
# Add your files (e.g., `Assignments/Assignment1/Your_Name/`)
git add .
# Commit with a descriptive message
git commit -m "Commit maessage"
# Push to your branch
git push origin main- Make changes to your work
# Add your files (e.g., `Assignments/Assignment1/Your_Name/`)
git add .
# Commit with a descriptive message
git commit -m "Commit maessage"
# Push to your branch
git push origin main