Version control, also known as source control, is the practice of tracking and managing changes to software code. Version control systems are software tools that help software teams manage changes to source code over time.
Version control software keeps track of every modification to the code in a special kind of database. If a mistake is made, developers can turn back the clock and compare earlier versions of the code to help fix the mistake while minimizing disruption to all team members.
The Version Control Systems that we are going to use is Git, which will be assosiated with the gitlab account that was provided by the FabLab BH.
To be able to use git, we need to download and install git in our pc first.
And if everything went successfully, we will be able to see these options when right-clicking in any folder
git status
git add .
git commit -m "comment"
git branch
git push
git pull