About -- Git :distributed version control
Git In software development , Git / ɡ ɪ t / is a distributed version control and source code management (SCM) system with an emphasis on speed. [ 3 ] Initially designed and developed by Linus Torvalds for Linux kernel development, Git has since been adopted by many other projects. Every Git working directory is a full-fledged repository with complete history and full version tracking capabilities, not dependent on network access or a central server. Git is free software distributed under the terms of the GNU General Public License version 2. Ref. : https://en.wikipedia.org/wiki/Git_%28software%29 I have few tried to create few test to rewind the skills-set for basic "git" knowledge:- Git: Install : Ubuntu : sudo apt-get install git RHEL/CentOS/Fedora: yum install git Git :User Configuration : # your name git config --global user.name "Example Name" # your email-address git config --global user.email "email@gmail.com" # enab...