This week I want to discover and explore about GitLab
What exactly is GiT?
GIT
Git is a Version Control System that keeps track of all the changes done to the files that are being monitored by it. It also allows multiple developers to share and work collaboratively on the same set of files, without conflicting with each other’s work.
It not only keeps track of what files were changed, but it also keeps tracks of:-
What changes were done?
Who did these changes?
When these changes were done.
For you to share and work collaboratively with other developers, you require access to a Git-based hosted service.
Useful links
Code Example
// the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(LED_BUILTIN, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second }
Gallery
Video
From Vimeo
Sound Waves from George Gally (Radarboy) on Vimeo.
From Youtube