This guide shows how to clone the repository inside VS Code using the built-in terminal.
Repository URL:
- HTTPS: https://github.com/pengbin2015/AI-SDLC-prompt-chaining.git
- SSH: git@github.com:pengbin2015/AI-SDLC-prompt-chaining.git
- Visual Studio Code installed: https://code.visualstudio.com/
- Git installed: https://git-scm.com/downloads
- Open a terminal in VS Code
- Menu: Terminal > New Terminal
- Shortcut: Ctrl+
(Windows/Linux) or Cmd+(macOS)
- Choose the shell for your OS
- Windows: PowerShell (default in VS Code)
- macOS/Linux: bash or zsh
- Navigate to the parent folder where you want the project
- Windows (PowerShell):
New-Item -Type Directory -Path "$HOME\Projects" -Force | Out-Null
Set-Location "$HOME\Projects"- macOS/Linux (bash/zsh):
mkdir -p ~/Projects
cd ~/Projects- Clone the repository (pick HTTPS or SSH)
- Windows (PowerShell):
# HTTPS
git clone https://github.com/pengbin2015/AI-SDLC-prompt-chaining.git
# SSH
git clone git@github.com:pengbin2015/AI-SDLC-prompt-chaining.git- macOS/Linux (bash/zsh):
# HTTPS
git clone https://github.com/pengbin2015/AI-SDLC-prompt-chaining.git
# SSH
git clone git@github.com:pengbin2015/AI-SDLC-prompt-chaining.git- Enter the project and verify the remote
- Windows (PowerShell):
Set-Location "AI-SDLC-prompt-chaining"
git remote -v- macOS/Linux (bash/zsh):
cd AI-SDLC-prompt-chaining
git remote -v