Using GitHub Desktop as a Client for GITLAB and other GIT Services

Using GitHub Desktop as a Client for GITLAB and other GIT Services

Tiempo de lectura: 2 minutos Reading time: 2 minutes Using GitHub Desktop as a Client for GITLAB and other GIT Services Photo by Christina Morillo on Pexels Github Desktop is the official GitHub client for Windows, Linux, and Mac. It is available for free on their website: https://desktop.github.com/, and it simplifies the process of synchronizing, updating, and maintaining your projects … Read more

Create Webhook for Jenkins using Github

Create Webhook for Jenkins using Github

Tiempo de lectura: 3 minutos Reading time: 3 minutes Hello, today we are going to learn how to create a Webhook to automatically deploy with Jenkins using Github. First, let’s go to our Jenkins and settings. We need to install the Generic Webhook Trigger plugin, which is compatible with Github. Once installed, go to your Jenkins Job > Configuration and … Read more

Create RSA Key for Github Authentication

Create RSA Key for Github Authentication

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today, I’m going to show you how to create an RSA key for use in your Github projects (https://github.com/) The first thing we need to do is generate an RSA key in Ubuntu or WSL: ssh-keygen -t rsa -b 4096 -C “email@example.com” Replace “email@example.com” with the email associated with your Gitlab … Read more

Importing a Gitlab Project into Github

Importing a Gitlab Project into Github

Tiempo de lectura: 3 minutos Reading Time: 2 minutes Today we are going to learn how we can import a Gitlab project into Github. The first thing we are going to do is go to our Github and click on + (import repository). Now we are going to select the requested options: First, we add the URL of our Gitlab … Read more

Error when performing a push on a git project: error: insufficient permission…

Error when performing a push on a git project: error: insufficient permission…

Tiempo de lectura: < 1 minuto Reading time: < 1 minute When trying to perform a push on a project that is configured with git, I get the following error: error: insufficient permission for adding an object to repository database .git/objects error: Error building trees To solve this error, I first navigated to the .git directory. Inside this directory, we executed ... Read more

Add and use GitHub Copilot to help you program any language in VSCode

Add and use GitHub Copilot to help you program any language in VSCode

Tiempo de lectura: 2 minutos Reading time: 3 minutes One day ago, GitHub released its code assistant Copilot, capable of helping you program in any language. It’s important to note that this Artificial Intelligence (AI) is not capable of programming on its own, but it can assist us in avoiding web searches while programming. It is available for €10/month or … Read more

Using GitHub Desktop as a Client for GITLAB and other GIT Services

Using GitHub Desktop as a Client for GITLAB and other GIT Services

Tiempo de lectura: 2 minutos Using GitHub Desktop as a Client for GITLAB and other GIT Services Photo by Christina Morillo on Pexels Github Desktop is the official GitHub client for Windows, Linux, and Mac. It is available for free on their website: https://desktop.github.com/, and it simplifies the process of synchronizing, updating, and maintaining your projects in GIT. Through a … Read more