# Полезное

# Клонирование одной конкретной ветки

```bash
git clone --single-branch --branch <branchname> <remote-repo>
```

или

```bash
git clone --single-branch -b <branchname> <remote-repo>
```