• gh actions
$ gh auth login
$ gh repo create repo_name # Cоздание удаленного репозитория (без URL)
$ gh repo clone user/repo

$ gh pr create --title "Название" --body "Описание" --base main --head feature-branch
     --title # Заголовок PR
     --body # Описание
     --base # Целевая ветка
     --head # Ваша ветка
     —assignee «nickname» 
     --source=
     --public
     --private
     --base main 
     --head feature-branch # Индивидуальный pull request (можно -a)

$ gh pr create --title "Bug" --body "work"$ gh pr create --base base_name # head changed_branch
$ gh pr merge --squash

$ gh issue list # Список открытых issue
$ gh repo view --web # Открыть репозитория в web

Logo