A gamified VS Code extension for debugging with eco coding tips.
- Displays eco-friendly coding tips.
- Gamifies debugging for a fun experience.
Ecodebugger.helloWorld: Displays a welcome message.
- Clone the repository.
- Run
npm installto install dependencies. - Use
npm run compileto build the extension. - Press
F5in VS Code to launch the Extension Development Host.
-
✅everyone clone the repo:Use command
git clone https://github.com/Phineas-bot/Ecodebugger-bot-repo -
✅ Everyone creates and works on their own branch for any task
git checkout -b feature/branch-name -
✅ Push your branch to GitHub
git push origin feature/branch-name -
✅ Create Pull Requests to merge to main
-
✅ This keeps your main branch always clean and working.
- Check current branch
git branch - Create a new branch
git checkout -b feature/branch-name - Switch to another branch
git checkout feature/branch-name - See changed files
git status - Save work
git add .thengit commit -m "Message" - Push branch to GitHub
git push origin feature/branch-name - Pull latest main branch
git pull origin main