Sign in to GitHub inside VS Code so you can push your
code directly — no terminal commands needed.
Open VS Code
Launch VS Code and open your project folder. Make sure your project has at least one file saved.
Click the Source Control icon
In the left activity bar, click the branch icon (looks like a fork). This opens the Source Control panel.
Initialize the repository
Click Initialize Repository. This runs git init in your project folder — you'll see your files appear as changes.
Sign in to GitHub
Open the Command Palette with ⌘ Shift P (Mac) or Ctrl Shift P (Windows), then type:
Select GitHub: Sign in to GitHub and press Enter.
Allow VS Code to open your browser
A notification pops up asking to open GitHub in your browser. Click Allow.
Publish to GitHub
Back in VS Code, click Publish to GitHub in the Source Control panel. Choose Public or Private repo.
env.js is listed in .gitignore before publishing so your TMDB token is not exposed.
You're connected!
From now on, use the Source Control panel to stage, commit, and push changes — no terminal needed.