branch

Using Git

1.0 Introduction Git commands for common source code management use cases are listed. 2.0 Install Git On an Ubuntu Linux system, Git can be installed with the command, $ sudo apt-get install git 3.0 Set Identity Before using Git, the user's identity (name, email) has to be set $ git config –global user.email “user1@example.com” $ …

Using Git Read More »

Git Tutorial

Git is a software source code management (SCM) system, originally developed by Linus Torvalds in 2005 for management of Linux kernel source code. Using Git greatly simplifies the source code management functions for a project and improves the overall efficiency of the software development process. Git has become a very popular source code management system …

Git Tutorial Read More »