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

Access Error When Pulling via Console Using GitLab – Access Token

Access Error When Pulling via Console Using GitLab – Access Token

Tiempo de lectura: 2 minutos Reading time: 2 minutes When trying to perform a GitLab project pull via the console, I’m getting the following error: GitLab – remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. To solve this, … Read more

Generate RSA Key for Commits and PULL in Gitlab Without Authentication

Generate RSA Key for Commits and PULL in Gitlab Without Authentication

Tiempo de lectura: 2 minutos Reading time: 3 minutes Today, I’m going to show you how to create an RSA key to use in your GITLAB projects https://gitlab.com/ First, let’s go to the Ubuntu console (you can use WSL if you’re on Windows) ssh-keygen -t rsa -b 4096 -C “email@example.com” Replace “email@example.com” with the email of your Gitlab account. It … 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

How to Create a Kanban Board and Custom Labels in GitLab

How to Create a Kanban Board and Custom Labels in GitLab

Tiempo de lectura: 2 minutos Reading Time: 2 minutes How to Create a Kanban Board and Custom Labels in GitLab Photo by Linda Eller-Shein on Pexels To create a work board, we need to access our GitLab profile, select the project where we want to create the board, and then follow a few simple steps that we will see below. … 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