Git and
Version Control
The best Open Source Version Control System
Table Of Contents
Git Installation
Configuring Git for you
Tracking and committing your works
Understanding .gitignore
Pushing your work into the repository
Wrap up the session…
What is Git?
What is Git?
Version Control System
Git Installation
Windows: https://git-scm.com/downloads/win
Linux: sudo <package manager> install git
MacOS: brew install git
Configuring git for you…
git config --global user.name “<your name>”
git config --global user.email “<youremail@example.com>”
Must Know Git Commands
Tracking and Committing your Works
git init
git add <filename>
git commit -m “<commit message>”
git status
Tracking and Committing your Works
Understanding .gitignore
Pushing your work into the Repository
Let’s Wrap up…
Thank you!