Skip to content

Instantly share code, notes, and snippets.

# Instalace Git a Claude Code na server
Write-Host "Stahuji Git..." -ForegroundColor Cyan
Invoke-WebRequest -Uri "https://github.com/git-for-windows/git/releases/download/v2.47.1.windows.2/Git-2.47.1.2-64-bit.exe" -OutFile "$env:TEMP\git-installer.exe"
Write-Host "Instaluji Git..." -ForegroundColor Cyan
Start-Process -FilePath "$env:TEMP\git-installer.exe" -ArgumentList "/VERYSILENT" -Wait
$env:Path += ";C:\Program Files\Git\bin"
Write-Host "Instaluji Claude Code..." -ForegroundColor Cyan
npm install -g @anthropic-ai/claude-code
Write-Host "Hotovo! Spustte: claude" -ForegroundColor Green