Skip to content

1. State of the art, project management and documentation

  1. Install Git: I downloaded and installed Git on my local machine from the official Git website.
  1. Clone Repository Locally: I began by cloning the remote repository to my local machine using the git clone command. This creates a local copy of the repository on my computer. The link to clone the repository was obtained from my GitLab website, where the project repository is hosted. I copied the clone with HTTPS link from the code tab.
```
git clone <repository_URL>
```
  1. Configure Git: I set up my Git configuration with your username and email address using the git config command.

    git config --global user.name "Your Name"
    
    git config --global user.email "your_email@example.com"