Git was just installed, but PowerShell needs to be restarted to recognize the git command.
- Close VS Code completely
- Reopen VS Code
- Open a new terminal (Terminal → New Terminal)
# Navigate to project directory
cd d:\offline_quee_engine
# Initialize Git repository
git init
# Add all files
git add .
# Commit files
git commit -m "Initial commit: Offline Queue Engine v1.0.0"
# Rename branch to main
git branch -M main
# Add remote repository
git remote add origin https://github.com/Sakil9051/offline-queue-engine.git
# Push to GitHub
git push -u origin mainIf the above doesn't work, you can also:
- Right-click in the
d:\offline_quee_enginefolder - Select "Git Bash Here"
- Run the same commands above
https://github.com/Sakil9051/offline-queue-engine
Once pushed, your repository will include:
- ✅ Complete TypeScript source code
- ✅ Compiled
dist/folder - ✅ Comprehensive README.md
- ✅ Package.json ready for npm
- ✅ Interactive demo
- ✅ MIT License