What Is Git? - Distributed Version Control System - Allows Versions of Project - Ease To Collaborate
What Is Git? - Distributed Version Control System - Allows Versions of Project - Ease To Collaborate
- Ease to collaborate
- Why Git
- Continues integration
- Repository
Agenda - Add/Commit
- Push/Pull
- Branch
- Merge
let’s Start
Repository - New Repository
$ git init
- Existing Repository
$ git clone <URL>
- Add changes to Staging
Add & Commit $ git add <filename>
or
$ git add .