Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

How to Install and Use GitBash (Windows) for GITLAB and Other GIT Services

Tiempo de lectura: 2 minutos

Reading time: 2 minutes

How to Install and Use GitBash (Windows) for GITLAB and Other GIT Services

Photo by Lukas on Pexels

What is Git Bash?

It is an application for Microsoft Windows environments that offers an emulation layer for a Git command-line experience. Also valid on Linux and MacOS.

You can install it on GITBASH.

A Git repository is a virtual storage of your project. It allows you to save versions of your code that you can access when you need it.

The main commands for handling a repository using GitBash in your GitHub or GitLab projects are:

Let’s imagine we have a project called “Proyecto”, to operate on it, we must do the following, first position ourselves within the project, and then press “Right button > Git Bash Here”. The console will open and we can start working on it:

Within our project we do the following:

  1. Starting a new repository: git init
  2. We clone the project from where we have it, whether it’s on GitHub or GitLab (for example). We copy the route that is in “Clone with HTTPS”, and then in the console we would type: git clone + paste the route we just copied.
  3. Adding changes: git add .
  4. Creating a message that describes what we are going to add: git commit -m “new changes task x completed”
  5. Downloading changes: git pull origin master
  6. Uploading changes: git push origin master

IMPORTANT! Before uploading any changes, we must download them, so that no conflicts are created.

These commands are basic and necessary to be able to work simultaneously on a project with more participants in git.

I hope it is helpful for you, until next time.😉

0

Leave a Comment