Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 1.16 KB

File metadata and controls

56 lines (39 loc) · 1.16 KB

Push to GitHub Instructions

The Issue

Git was just installed, but PowerShell needs to be restarted to recognize the git command.

Solution: Restart VS Code

  1. Close VS Code completely
  2. Reopen VS Code
  3. Open a new terminal (Terminal → New Terminal)

Then Run These Commands:

# 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 main

Alternative: Use Git Bash

If the above doesn't work, you can also:

  1. Right-click in the d:\offline_quee_engine folder
  2. Select "Git Bash Here"
  3. Run the same commands above

Your Repository URL:

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