安装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 确认识别。项目版本控制操作
高级操作(可选)
以上步骤参考自,可根据实际需求调整。