All team members will receive write access. Follow the steps below to clone, modify, commit, and push changes.
1. Install Git on your Local Machine (Windows or Linux)
During installation: use default settings, enable Git Bash. Verify: git --version
2. Install a Code Editor
VS Code (Recommended) or Sublime Text
3. Create a Local Workspace
Example: D:\Projects\daryeel_testbed or any preferred folder
4. Right-click → “Open Git Bash here” inside your workspace folder.
5. Configure Git Identity (One-Time)
Use your personal GitHub account until corporate accounts are ready.
git config --global user.name "Your Full Name"
git config --global user.email yourname@daryeelict.com
Verify: git config --global --list
6. Clone the Project from GitHub
git clone https://github.com/devdaryeel/daryeel_testbed.git
7. Move into the project directory & sync (Server Side or local)
cd daryeel_testbed
git status
git pull origin main (or master, depending on default branch)
8. Open Project in Code Editor (VS Code: code .)
9. Make Code Changes — you can edit, add new PHP/HTML/CSS/JS files, or even replace this index with your own entry point.
10. Check Your Changes Before Commit
git status
11. Commit Your Changes (With Clear Message)
git add .
git commit -m "Fix registration form or add feature"
12. Push to GitHub
git push origin main (or your branch: git push origin feature/short-description)
You can remove or replace this index.php file — the testbed is yours. Create new entry points, restructure, and commit freely. The repository welcomes experimentation.