Posts

Showing posts with the label Git Repository

Why to choose Git Repository

There are numerous internet articles which will tell you difference between Git and other popular repository system like subversion, CVS etc. But I didn’t want to discuss comparison rather I will let you know what the benefits Git can delivers to us, so that we can clearly make our mind whether to go for Git. Below are some of benefits No Internet required to work on, you can work offline. Branching is a light weight process You can stack your uncommitted changes and can popup them once you are ready. More flexible workflow Data redundancy & replication Works well with open source project or projects where contributors may take months to contribute there code. Let’s review each of them in detail No Internet required to work on, you can work offline – First steps to use Git is to create a local repo at your machine. You can use Git Clone command for the same. Since you have a complete repo at local machine, we did not have to bother about internet connection.