Tag Archives: Git

Git Basics: A Quick Reference

This is a quick reference guide to Git basics. If your completely new to Git or version control, this is not the best reading to spend time on. I suggest progit.org or the quick reference guides from the official git website. Init To start tracking a directory: Add To start version-controlling specific files or a sub-set of files you need to add them to the staging area using the add …

Posted in Linux | Tagged , | Leave a comment

Setting up Git on CentOS

Git is a new version control system created by Linus Torvalds. If your starting a project, it is a good idea to have a version control system setup before starting the project. There are alternatives to git but two of the most popular ones are SVN, CVS. The major difference between git and the rest is that git is distributed where svn or cvs are server-client based. Setup By default, …

Posted in Linux | Tagged , , | Leave a comment