Git Commands

Now that you are all set to start with Git, here are some of the frequently used Git commands for your reference: git add Usage: git add [file]   This command adds a file to the staging area. Usage: git add *   This command adds one or more to the staging area. git…

Continue reading

Jumpstart to Git & GitHub

Here are the basic steps to install Git and create a free GitHub account. Installing on Windows There are also a few ways to install Git on Windows. The most official build is available for download on the Git website. Just go to https://git-scm.com/download/win and the download will start automatically. Note that…

Continue reading

Difference between GIT and GitHub

Git is a version control system. Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. A version control automatically tracks every minute change in your project and allows us to revert back to a…

Continue reading