Skip to main content

Quick Terminal Access Guide

Open Terminal in Cursor

Method 1: Keyboard Shortcut
  • Press: Ctrl + ` (backtick key, usually above Tab)
  • Or: Ctrl + Shift +
Method 2: Menu
  • Go to: TerminalNew Terminal
Method 3: Command Palette
  • Press: Cmd + Shift + P (Mac) or Ctrl + Shift + P (Windows/Linux)
  • Type: “Terminal: Create New Terminal”
  • Press Enter
Once terminal is open, run:
cd /Users/markt/.cursor/worktrees/sanctiv-app-1/GFeFi

Verify You’re in the Right Place

pwd
# Should show: /Users/markt/.cursor/worktrees/sanctiv-app-1/GFeFi

ls
# Should show: app.json, package.json, src/, docs/, etc.

Run the Preview Build

Once you’re in the correct directory:
eas build --profile preview --platform ios
Follow the prompts to:
  1. Log in to your Apple account
  2. Complete 2FA if required
  3. Let EAS manage credentials automatically

Current Directory Path

Your worktree is located at:
/Users/markt/.cursor/worktrees/sanctiv-app-1/GFeFi

Tip: You can also right-click on a folder in the file explorer and select “Open in Integrated Terminal” to open a terminal already in that directory.