CSP451 Version Control and GitHub CheckPoint 1
This project demonstrates proficiency in Git version control and GitHub repository management. It includes a basic web application with HTML, CSS, and JavaScript, showcasing proper Git workflows, commit conventions, and branching strategies.
- Git installed on your system
- A modern web browser
- GitHub account
-
Clone the repository:
git clone https://github.com/DC-Seneca/CK1.git cd CK1/csp451-checkpoint1 -
Navigate to the project directory:
cd csp451-checkpoint1 -
Open
index.htmlin your web browser
Simply open index.html in any web browser. The page will display a welcome message
and demonstrate basic HTML/CSS/JavaScript integration.
git log --onelinegit diff- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes following the commit message convention:
feat:for new featuresfix:for bug fixesdocs:for documentationstyle:for formattingrefactor:for code refactoring
- Commit your changes (
git commit -m 'feat: add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is created for educational purposes as part of CSP451 coursework at Seneca College.
Copyright (c) 2024
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.