安裝Git
在Debian終端執行以下命令安裝Git:
sudo apt update && sudo apt install git
驗證安裝:git --version
。
配置Git
git config --global user.name "Your Name"
git config --global user.email "your_email@example.com"
```。
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
```。
PhpStorm集成Git
/usr/bin/git
),點擊 Test 確認識別。項目版本控制操作
高級操作(可選)
以上步驟參考自,可根據實際需求調整。