This repository contains coursework and collaborative code for our Software Configuration Management (SCM) class. It demonstrates practical application of Git version control, branching strategies, configuration tracking, and collaborative development using Python.
├── .venv/ # Virtual environment (excluded from Git) ├── .gitignore # Git ignore rules for clean commits ├── assignments/ # Folder for individual or group assignments │ └── number_program.py # Python number program code ├── projects/ # Folder for the main group project (currently empty) └── README.md # Project documentation
git clone https://github.com/your-username/SFE4015-scm.git
cd SFE4015-scm
### 2. Set Up Virtual Environment
```bash
python -m venv .venv
# On Linux/macOS
source .venv/bin/activate
# On Windows
.venv\Scripts\activatepython number_program.py👥 Contributors
- Benjamin Kivaa (Code-Cadet)
- Aisha Kulane (KULANEAisha)
- Chantel Masilela (Chantel-Tiyandza1)
🏷️ Tags
software-configuration-management • version-control • git • scm • python • coursework • team-project
📄 License
This project is licensed under the MIT License. See the LICENSE file for details.