Posts

Showing posts from 2015
Image
I am writing this blog to put my understanding and regular practice for Git workflow. Introduction In this blog some information might look very simple to the the Git experts; but it might be helpful to the beginners. I will not go brief into the advantages of using git; but I will try to elaborate what should be the basic workflow for git into your project.  Before playing with git, the basic idea of current working project or work space, index area, local repository and remote repository  makes it easy to understand. Workspace : It is a current working project on your IDE or any other editor. So initially each file and folders of your project will be in this state until you perform any git operation on it. Index Area : It is a cache or temporary space in your personal machine. In other words it is a private area acquired by Git in your machine to temporary store your data. So question comes like why is it required? This memory makes Git able to provide offl...