Understanding GIT
Getting started Method of installing GIT will be explained in the beginning. Step 1 Install git by using following command " sudo apt install git" Step 2 Confirm git installation by checking for a git version " git --version" Step 3 Configure Git, enter credentials(user name and email) to identify you as the author if your work " git config --global user.name "your_username"" " git config --global user.email "your_email_address@example.com"" To check the configuration " git config --global --list" Clone a repository " git clone <repository path> " Convert a local directory to a repository Go to the required location and insert the command: " git init " Add a remote repository Create a new project in GitLab to hold your files. Visit this project's homepage, scroll down to Push an existing folder, and copy the command that starts with " git remote add " On your computer...