From d2420a26afef3d17b64f5d3f5d12fd5ac42b90e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Wed, 14 Dec 2022 23:49:53 +0100 Subject: [PATCH] Fix instructions for preparing build environment (#4568) https://github.com/armbian/build/issues/4567 --- CONTRIBUTING.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 55cda485f6..960f3fdede 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -22,19 +22,18 @@ This section describes how to start contributing to Armbian. ### Prepare your environment -* Create an Ubuntu 22.04 VM with VirtualBox or any other suitable hypervisor. Then proceed with: +* Create an Ubuntu 22.04 VM with VirtualBox or any other suitable hypervisor. +* Install [Github CLI tool](https://github.com/cli/cli/blob/trunk/docs/install_linux.md) +* Configure git: ```bash - sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key C99B11DEB97541F0 - sudo apt-add-repository https://cli.github.com/packages - sudo apt update - sudo apt -y install gh git - - # Configure git git config --global user.email "your@email.com" git config --global user.name "Your Name" - - # Generate gpg key +``` + +* Generate GPG key + +```bash gpg --generate-key ```