

You will get the Command line tool listed as shown in the below image. Once you have Git installed, simply search of git cmd in your system search bar. Initialize Git Repository for the Project.I hope you have already gone through the Git installation process described in the tutorial here:Ĭreating a Bare Git Repository for a new project is three-step process: The very first thing is to find the Git command line tool on the system. So, let's get started and see how we can create a Git repository in the three ways mentioned above. So, to harness the complete power of Git like a pro, Git command line tools are the recommended way to use GIT. Using Git command line tool gives you more flexibility than Git Clients or Git GUIs because they provide only a subset of GIT Features. Use of Git command line tool will help you get familiar with the GIT Commands.
#GIT ADD REMOTE REPOSITORY SERIES#
We'll be using Git command line tool to create repositories and also for learning all the Git operations in this series of tutorials. Initialize repository in an existing project directory.We can Create Git Repository using one of the three approaches enlisted below: git folder to enable GIT programs to track changes in the repository. For the time being, just remember that every GIT repository will have a hidden. It allows you to save versions of your code, which can be accessed, tracked, and managed.Īt this article, we don't know much about these terms and hence we will keep our discussion to a minimum about the. git folder in a git repository is used by GIT programs to store information about the repository like Logs, Position of Head, and more. In short Git Repository is a collection of all project files along with their history. It is a virtual storage of your project where you keep all the resources/files of the project along with a special folder called. Git stores this information in a data structure called a repository. The purpose of Git is to manage a project, or a set of files, as they change over time.

However, before you proceed with this tutorial it is very important that you have gone through the previous set of tutorials on GIT here:
#GIT ADD REMOTE REPOSITORY HOW TO#
In this tutorial, we will learn How to Create Git Repository.
