1. What are version control systems?
  2. Why use vcs?
  3. Intro to Git
  4. Why Git?
  5. Git shell and Github demo

Final DOC

final-doc.gif

project-finale.jpg

After 2-3 months you will forget where your files are.

i-forgot.gif

:ARTICLE: larger

It's because we didn't know about version control systems.

Version Control Systems

  • Avoid You From Creating Multiple Backups Of Your Files
  • Multiple People Can Work On Same File
  • Tracks The Changes Of The Files
  • Switch Older Or Newer Versions Easily

git-vcs.png

What is GIT?

Distributed Version Control System ( DVCS )

distributed-vc.png

Installation

For unix based systems:

#For dpkg based linux distros
sudo apt install git-core
#For pacman based linux
sudo pacman -S git 
#For rpm based 
sudo yum install git 
#for Mac OS
brew install git

For Windows Based Systems:

www.git-scm.com/downloads

Demo

Ideas and References from: