Step 1 — Update Default Packages Logged into your Ubuntu 18.04 server as a sudo non-root user, first update your default packages. sudo apt update Step 2 — Install Git sudo apt install git Step 3 — Confirm Successful Installation You can confirm that you have installed Git correctly by running this command and receivingContinue reading “How To Install Git on Ubuntu 18.04”
Category Archives: GitHub
Generating a new SSH key
Generating a new SSH key Open Terminal. Paste the text below, substituting in your GitHub email address. $ ssh-keygen -t rsa -b 4096 -C “your_email@example.com” This creates a new ssh key, using the provided email as a label. > Generating public/private rsa key pair. When you’re prompted to “Enter a file in which to save theContinue reading “Generating a new SSH key”
Setting up GitHub Webhooks in Jenkins
One of the most important aspects of a good Continuous Integration (CI) process is quick feedback whenever there is a change. This means that it is important to execute builds as soon as possible after a code change is pushed to source control. One of the best ways to do this with GitHub and Jenkins isContinue reading “Setting up GitHub Webhooks in Jenkins”
You must be logged in to post a comment.