Learning Git

Sai Chaitanya
1 min readJul 10, 2017

--

In this everyone who was using windows has to learn how to use git-bash commands.

What is git?

Git is open source code management system.It allows groups of developers to collaborate on the same documents (often source code) simultaneously and without overriding each other’s work and it’s a shell for windows as terminal for linux.

Why is git useful?

  • If you accidentally delete your code, using git can help you get it back.
  • If you accidentally change your code and break something, git can revert it.
  • Git lets you share and exchange code with other developers easily.
  • If you want to know what recent changes you made to you code, git will show you.
  • Git lets you backup your code easily to a remote server.
  • Many more things!

Here is the link to download git tools for Windows:

https://git-for-windows.github.io

git resource link

--

--