Day 2: Git Zero To Hero πŸš€

Β·

2 min read


Shree KumarπŸ¦‹ on Twitter: "Exclusive. Tribe are u ready to make history?  Chaliye shuru karte hai. SHAMITA DESERVES BB VICTORY  https://t.co/2ozkFmamy1" / Twitter

Type Of Version Control System (VCS)

  1. Local

    In this type of version control system all your code files are stored locally in your system or database.

    This type of version control system comes with various issues such as your harddisk might get corrupted. woooshh all your data gone πŸ˜…, so that's why these type of vcs are not used.

  2. Centralized

    Centralized vs Distributed Version Control Systems | by Mateusz LubaΕ„ski |  FAUN Publication

In this image reveals everything we have one server which manages everything i.e whether u do any update, commit in file u do all in that server.Its improved way than local but not the best at all because what if server goes down πŸ˜†, u cannot do anything.

  1. Distributed

    What Is Git | Explore A Distributed Version Control Tool | Edureka

Its the best way for managing your project , the above image reveals everything, every developer has its own local copy of project and moreover in this we have one server too . This architecture is the best way to manage the project, somebody still might be thinking what if server goes down 😁, dont worry u have your local copy of project with u my friend .

Conclusion

The best way of version control system is distributed version control system aka GIT.

Next Blog Teaser πŸ˜„

Configure GIT ....

Bye GIFs | Tenor

Thanks for reading πŸ™πŸ§‘

Β