How I Uploaded My NR-V2X Pedestrian Safety Project to GitHub Using SSH (Windows + Git Bash) If you’re a researcher or student, keeping your projects on GitHub is a lifesaver. It gives version control, easy sharing, and backup . In this tutorial, I’ll show you how I uploaded my NR-V2X Pedestrian Safety project to GitHub securely using SSH on Windows. Step 1: Install Git and Open Git Bash First, install Git for Windows: https://git-scm.com/downloads Once installed, open Git Bash — it handles SSH much better than Command Prompt or PowerShell. Step 2: Create an SSH Folder In Git Bash, type: mkdir ~/.ssh This creates a hidden .ssh folder in your home directory. Step 3: Generate an SSH Key Pair ssh-keygen -t ed25519 -C "your_email@example.com" -f ~/.ssh/id_ed25519 Press Enter when asked for a passphrase (optional) This creates: id_ed25519 → private key (keep secret) id_ed25519.pub → public key (to share with GitHub) Step 4: Start the SSH A...