Why Version Control Systems: Centralized repository to share the code. Multiple people work in a single code (Project Code) Development fast since many developers work on the single code. Different Version Control Systems Internet-Based (WAN Based) GitHub BitBucket Microsoft VSTS many more... LAN Based SVN CVS many more... Client for above all version controlling systems: Git (Git Bash shell) SourceTree Repository types: Public Private // To push the project from local PC – FIRST PROJECT 1. First create the repository on remote location 2. Install and Open git bash 3. Go to your project directory, where your files are placed. 4. Perform git commands a. Git init – it will generate .git folder (To see it, make the folder show f...